mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
30 lines
423 B
Rust
30 lines
423 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
//! Tests that assignment in both branches of an `if` are eliminated.
|
|
// unit-test: DestinationPropagation
|
|
fn val() -> i32 {
|
|
1
|
|
}
|
|
|
|
fn cond() -> bool {
|
|
true
|
|
}
|
|
|
|
// EMIT_MIR branch.foo.DestinationPropagation.diff
|
|
fn foo() -> i32 {
|
|
let x = val();
|
|
|
|
let y = if cond() {
|
|
x
|
|
} else {
|
|
val();
|
|
x
|
|
};
|
|
|
|
y
|
|
}
|
|
|
|
fn main() {
|
|
foo();
|
|
}
|