blob: 55da30a2fd75dfbb738564a48ce44fa02b2d0029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//@ run-fail
//@ ignore-i686-pc-windows-msvc: #112480
//@ 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 = x.as_mut_ptr();
unsafe {
let _v = *(ptr.byte_add(1));
}
}
|