blob: 2d71458c1741a7257875b9796463d31142aba7ee [file] [log] [blame]
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
// compile-flags: -Zinline-mir-hint-threshold=1000
#![feature(generators, generator_trait)]
use std::ops::Generator;
use std::pin::Pin;
// EMIT_MIR inline_generator.main.Inline.diff
fn main() {
let _r = Pin::new(&mut g()).resume(false);
}
#[inline]
pub fn g() -> impl Generator<bool> {
#[inline]
|a| { yield if a { 7 } else { 13 } }
}