blob: 216203f9ff08d03595d716e90347f15b8151434d [file] [log] [blame]
#[inline(never)]
fn noop() {}
// EMIT_MIR simplify_match.main.ConstProp.diff
fn main() {
match { let x = false; x } {
true => noop(),
false => {},
}
}