rust/tests/compile-fail/int_ptr_cast.rs

6 lines
208 B
Rust
Raw Normal View History

2017-06-22 23:01:24 -05:00
fn main() {
let x = 2usize as *const u32;
// This must fail because alignment is violated
let _ = unsafe { &*x }; //~ ERROR: tried to access memory with alignment 2, but alignment 4 is required
}