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