about summary refs log tree commit diff
path: root/tests/ui/nll/assign-while-to-immutable.rs
blob: 991f9c3e45cea9643b07a589f114aa9e2f75b6ad (plain)
1
2
3
4
5
6
7
8
9
10
11
// We used to incorrectly assign to `x` twice when generating MIR for this
// function, preventing this from compiling.

//@ check-pass

fn main() {
    let x: () = while false {
        break;
    };
    let y: () = 'l: while break 'l {};
}