rust/tests/ui/consts/const-ptr-nonnull-rpass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
550 B
Rust
Raw Normal View History

// run-pass
#![feature(ptr_internals, test)]
extern crate test;
use test::black_box as b; // prevent promotion of the argument and const-propagation of the result
use std::ptr::NonNull;
const DANGLING: NonNull<u32> = NonNull::dangling();
const CASTED: NonNull<u32> = NonNull::cast(NonNull::<i32>::dangling());
pub fn main() {
2019-06-08 18:35:59 +00:00
// Be super-extra paranoid and cast the fn items to fn pointers before blackboxing them.
assert_eq!(DANGLING, b::<fn() -> _>(NonNull::dangling)());
assert_eq!(CASTED, b::<fn() -> _>(NonNull::dangling)());
}