]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/consts/const-ptr-nonnull.rs
remove useless ident() functions in const tests and replace the useful ones by black_...
[rust.git] / src / test / run-pass / consts / const-ptr-nonnull.rs
1 // run-pass
2
3 #![feature(ptr_internals, test)]
4
5 extern crate test;
6 use test::black_box as b; // prevent promotion of the argument and const-propagation of the result
7
8 use std::ptr::NonNull;
9
10 const DANGLING: NonNull<u32> = NonNull::dangling();
11 const CASTED: NonNull<u32> = NonNull::cast(NonNull::<i32>::dangling());
12
13 pub fn main() {
14     assert_eq!(DANGLING, b(NonNull::dangling()));
15     assert_eq!(CASTED, b(NonNull::dangling()));
16 }