summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/assign-while-to-immutable.rs
blob: c803321b5087a5b00b726f77c8429b46c5044536 (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 {};
}