blob: 68a5384b30d78050da349edeacff67f90667ebc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// run-fail
// ignore-wasm32-bare: No panic messages
// compile-flags: -C debug-assertions
// error-pattern: misaligned pointer dereference: address must be a multiple of 0x4 but is
fn main() {
let mut x = [0u32; 2];
let ptr: *mut u8 = x.as_mut_ptr().cast::<u8>();
unsafe {
*(ptr.add(1).cast::<u32>()) = 42;
}
}
|