mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +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() {}
|