blob: d7319eca18e2d107b913812a77ae5bfa1a996768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#[inline(never)]
fn foo(_: i32) { }
// EMIT_MIR switch_int.main.ConstProp.diff
// EMIT_MIR switch_int.main.SimplifyConstCondition-after-const-prop.diff
fn main() {
match 1 {
1 => foo(0),
_ => foo(-1),
}
}
|