blob: 6a2a6f2171967b2355513e60880654da41481761 [file] [log] [blame]
// ignore-wasm32 compiled with panic=abort by default
#[inline(never)]
fn noop() {}
// EMIT_MIR simplify_match.main.ConstProp.diff
fn main() {
match { let x = false; x } {
true => noop(),
false => {},
}
}