2023-01-07 15:10:38 -06:00
|
|
|
// unit-test: ConstProp
|
2020-06-22 07:03:18 -05:00
|
|
|
#![feature(raw_ref_op)]
|
|
|
|
|
2020-07-27 14:22:43 -05:00
|
|
|
// EMIT_MIR const_prop_miscompile.foo.ConstProp.diff
|
2020-06-22 07:03:18 -05:00
|
|
|
fn foo() {
|
|
|
|
let mut u = (1,);
|
|
|
|
*&mut u.0 = 5;
|
|
|
|
let y = { u.0 } == 5;
|
|
|
|
}
|
|
|
|
|
2020-07-27 14:22:43 -05:00
|
|
|
// EMIT_MIR const_prop_miscompile.bar.ConstProp.diff
|
2020-06-22 07:03:18 -05:00
|
|
|
fn bar() {
|
|
|
|
let mut v = (1,);
|
|
|
|
unsafe {
|
|
|
|
*&raw mut v.0 = 5;
|
|
|
|
}
|
|
|
|
let y = { v.0 } == 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
foo();
|
|
|
|
bar();
|
|
|
|
}
|