summary refs log tree commit diff
path: root/src/test/mir-opt/simplify_match.rs
blob: b8e1ea6f981faa1b4ae181b396c0f3cc1118324d (plain)
1
2
3
4
5
6
7
8
9
10
#[inline(never)]
fn noop() {}

// EMIT_MIR rustc.main.ConstProp.diff
fn main() {
    match { let x = false; x } {
        true => noop(),
        false => {},
    }
}