mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 04:04:06 +00:00
12 lines
234 B
Rust
12 lines
234 B
Rust
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// unit-test: DataflowConstProp
|
|
|
|
fn foo(n: i32) {}
|
|
|
|
// EMIT_MIR terminator.main.DataflowConstProp.diff
|
|
fn main() {
|
|
let a = 1;
|
|
// Checks that we propagate into terminators.
|
|
foo(a + 1);
|
|
}
|