rust/src/test/ui/generator/generator-with-nll.rs
2019-05-12 18:46:43 +01:00

13 lines
301 B
Rust

#![feature(generators)]
fn main() {
|| {
// The reference in `_a` is a Legal with NLL since it ends before the yield
let _a = &mut true;
let b = &mut true;
//~^ borrow may still be in use when generator yields
yield ();
println!("{}", b);
};
}