summary refs log tree commit diff
path: root/tests/ui/mir/alignment/place_without_read.rs
blob: b4be7a50f61deaeaf53632ba8b94e478a2ed138c (plain)
1
2
3
4
5
6
7
8
9
// run-pass
// compile-flags: -C debug-assertions

fn main() {
    let ptr = 1 as *const u16;
    unsafe {
        let _ = *ptr;
    }
}