blob: e4f717be8b5cc92d7c30d08e9b1efdefb1f53c18 [file] [log] [blame]
// run-pass
#![feature(coroutines)]
fn _run(bar: &mut i32) {
|| { //~ WARN unused coroutine that must be used
{
let _baz = &*bar;
yield;
}
*bar = 2;
};
}
fn main() {}