blob: fc9b8dc41b166c2a3b36f3f2b77ab8b4c0ddd0a0 [file] [log] [blame] [edit]
// skip-filecheck
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//! Tests that we bail out when there are multiple assignments to the same local.
//@ test-mir-pass: 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();
}