mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
18 lines
438 B
Rust
18 lines
438 B
Rust
// check-pass
|
|
|
|
// Some constants that *are* valid
|
|
|
|
use std::mem;
|
|
use std::ptr::NonNull;
|
|
use std::num::{NonZeroU8, NonZeroUsize};
|
|
|
|
const NON_NULL_PTR1: NonNull<u8> = unsafe { mem::transmute(1usize) };
|
|
const NON_NULL_PTR2: NonNull<u8> = unsafe { mem::transmute(&0) };
|
|
|
|
const NON_NULL_U8: NonZeroU8 = unsafe { mem::transmute(1u8) };
|
|
const NON_NULL_USIZE: NonZeroUsize = unsafe { mem::transmute(1usize) };
|
|
|
|
const UNIT: () = ();
|
|
|
|
fn main() {}
|