summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/while_let_loops.rs
blob: fc56cd6985d69a901049bb0fa65f0e4faea8a840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// EMIT_MIR while_let_loops.change_loop_body.ConstProp.diff
// EMIT_MIR while_let_loops.change_loop_body.PreCodegen.after.mir

pub fn change_loop_body() {
    let mut _x = 0;
    while let Some(0u32) = None {
        _x = 1;
        break;
    }
}

fn main() {
    change_loop_body();
}