mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
30 lines
407 B
Rust
30 lines
407 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
//! 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();
|
|
}
|