rust/tests/ui/generator/generator-with-nll.rs
2023-01-11 09:32:08 +00: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);
};
}