mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 05:57:03 +03:00
8 lines
169 B
Rust
8 lines
169 B
Rust
fn main() {
|
|
let x = 2usize as *const u32;
|
|
let _y = unsafe { &*x as *const u32 };
|
|
|
|
let x = 0usize as *const u32;
|
|
let _y = unsafe { &*x as *const u32 };
|
|
}
|