mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
230 B
Rust
12 lines
230 B
Rust
#[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),
|
|
}
|
|
}
|