summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-46036.rs
blob: 18af33c1821c0d6c7dfa4ba27422643a8eb4b3ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Issue 46036: [NLL] false edges on infinite loops
// Infinite loops should create false edges to the cleanup block.

struct Foo { x: &'static u32 }

fn foo() {
    let a = 3;
    let foo = Foo { x: &a }; //~ ERROR E0597
    loop { }
}

fn main() { }