summary refs log tree commit diff
path: root/tests/ui/coroutine/coroutine-with-nll.rs
blob: 28a3643fbc9cd9af5db9cf438c4161e19e14dd1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(coroutines)]

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 coroutine yields
        yield ();
        println!("{}", b);
    };
}