rust/tests/compile-fail/zst.rs

5 lines
158 B
Rust
Raw Normal View History

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