blob: cb3fc909145c2f88aa09b561695c7b2be107351c [file] [log] [blame]
// run-pass
#![allow(dead_code)]
#![allow(dead_code)]
#![feature(generators)]
fn bar<'a>() {
let a: &'static str = "hi";
let b: &'a str = a;
|| { //~ WARN unused generator that must be used
yield a;
yield b;
};
}
fn main() {}