rust/tests/compile-fail/unaligned_pointers/alignment.rs

12 lines
446 B
Rust
Raw Normal View History

2016-07-06 04:19:24 -05:00
fn main() {
let mut x = [0u8; 20];
2020-04-13 10:51:22 -05:00
let x_ptr: *mut u8 = x.as_mut_ptr();
2020-04-14 02:50:20 -05:00
// At least one of these is definitely unaligned.
// Currently, we guarantee to complain about the first one already (https://github.com/rust-lang/miri/issues/1074).
2016-07-06 04:19:24 -05:00
unsafe {
2020-04-14 02:50:20 -05:00
*(x_ptr as *mut u64) = 42; //~ ERROR accessing memory with alignment 1, but alignment
*(x_ptr.add(1) as *mut u64) = 42;
2016-07-06 04:19:24 -05:00
}
panic!("unreachable in miri");
}