mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
224 B
Rust
13 lines
224 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
#[inline(never)]
|
|
fn noop() {}
|
|
|
|
// EMIT_MIR simplify_match.main.GVN.diff
|
|
fn main() {
|
|
match { let x = false; x } {
|
|
true => noop(),
|
|
false => {},
|
|
}
|
|
}
|