5 lines
158 B
Rust
Raw Normal View History

fn main() {
let x = &() as *const () as *const i32;
2018-11-26 15:31:53 +01:00
let _val = unsafe { *x }; //~ ERROR access memory with alignment 1, but alignment 4 is required
}