mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
210 B
Rust
12 lines
210 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
#[inline(never)]
|
|
fn noop() {}
|
|
|
|
// EMIT_MIR simplify_if.main.SimplifyConstCondition-after-const-prop.diff
|
|
fn main() {
|
|
if false {
|
|
noop();
|
|
}
|
|
}
|