mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
270 B
Rust
15 lines
270 B
Rust
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
#[inline(never)]
|
|
fn noop() {}
|
|
|
|
// EMIT_MIR simplify_if.main.SimplifyConstCondition-after-const-prop.diff
|
|
fn main() {
|
|
// CHECK-LABEL: fn main(
|
|
|
|
// CHECK: bb0: {
|
|
// CHECK-NEXT: return;
|
|
if false {
|
|
noop();
|
|
}
|
|
}
|