5 lines
165 B
Rust
Raw Normal View History

fn main() {
let x = &() as *const () as *const i32;
2017-06-23 12:55:49 +02:00
let _ = unsafe { *x }; //~ ERROR: tried to access memory with alignment 1, but alignment 4 is required
}