rust/tests/compile-fail/static_memory_modification3.rs

13 lines
332 B
Rust
Raw Normal View History

// Stacked Borrows detects that we are casting & to &mut and so it changes why we fail
// compile-flags: -Zmiri-disable-stacked-borrows
use std::mem::transmute;
#[allow(mutable_transmutes)]
fn main() {
unsafe {
let bs = b"this is a test";
2020-03-08 17:34:54 -05:00
transmute::<&[u8], &mut [u8]>(bs)[4] = 42; //~ ERROR read-only
}
}