summaryrefslogtreecommitdiffstats
path: root/tests/ui/coroutine/yield-in-initializer.rs
blob: 5a7b3a4feafbee5ad72f8f03511b760501326d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass

#![feature(coroutines)]

fn main() {
    static || { //~ WARN unused coroutine that must be used
        loop {
            // Test that `opt` is not live across the yield, even when borrowed in a loop
            // See https://github.com/rust-lang/rust/issues/52792
            let opt = {
                yield;
                true
            };
            let _ = &opt;
        }
    };
}