mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-30 08:33:25 +00:00
7 lines
206 B
Rust
7 lines
206 B
Rust
use std::ptr::NonNull;
|
|
|
|
const NON_NULL: NonNull<u8> = unsafe { NonNull::dangling() };
|
|
const _: () = assert!(42 == *unsafe { NON_NULL.as_ref() }); //~ERROR: evaluation of constant value failed
|
|
|
|
fn main() {}
|