2023-06-08 02:18:34 -05:00
|
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
2023-04-23 07:30:02 -05:00
|
|
|
// unit-test: ConstProp
|
2020-05-12 06:23:01 -05:00
|
|
|
|
2020-07-27 14:22:43 -05:00
|
|
|
// EMIT_MIR mutable_variable_unprop_assign.main.ConstProp.diff
|
2020-05-12 06:23:01 -05:00
|
|
|
fn main() {
|
|
|
|
let a = foo();
|
|
|
|
let mut x: (i32, i32) = (1, 2);
|
|
|
|
x.1 = a;
|
|
|
|
let y = x.1;
|
|
|
|
let z = x.0; // this could theoretically be allowed, but we can't handle it right now
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(never)]
|
|
|
|
fn foo() -> i32 {
|
|
|
|
unimplemented!()
|
|
|
|
}
|