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

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

17 lines
426 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::Unique;
const PTR: *mut u32 = Unique::dangling().as_ptr();
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!(PTR, b::<fn() -> _>(Unique::<u32>::dangling)().as_ptr());
}