mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
28 lines
369 B
Rust
28 lines
369 B
Rust
//! 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();
|
|
}
|