rust/tests/mir-opt/copy-prop/branch.rs
Camille GILLOT 38b55dc684 Add tests.
2023-01-27 18:22:45 +00:00

28 lines
353 B
Rust

//! Tests that we bail out when there are multiple assignments to the same local.
// unit-test: CopyProp
fn val() -> i32 {
1
}
fn cond() -> bool {
true
}
// EMIT_MIR branch.foo.CopyProp.diff
fn foo() -> i32 {
let x = val();
let y = if cond() {
x
} else {
val();
x
};
y
}
fn main() {
foo();
}