2018-10-19 09:07:40 -05:00
|
|
|
// Validation detects that we are casting & to &mut and so it changes why we fail
|
2018-10-24 10:17:44 -05:00
|
|
|
// compile-flags: -Zmiri-disable-validation
|
2018-10-19 09:07:40 -05:00
|
|
|
|
2016-09-13 21:17:52 -05:00
|
|
|
static X: usize = 5;
|
|
|
|
|
|
|
|
#[allow(mutable_transmutes)]
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
2018-10-19 04:50:17 -05:00
|
|
|
*std::mem::transmute::<&usize, &mut usize>(&X) = 6; //~ ERROR tried to modify constant memory
|
2016-09-13 21:17:52 -05:00
|
|
|
assert_eq!(X, 6);
|
|
|
|
}
|
|
|
|
}
|