]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-ptr-unique-rpass.rs
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / consts / const-ptr-unique-rpass.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::Unique;
9
10
11 const PTR: *mut u32 = Unique::dangling().as_ptr();
12
13 pub fn main() {
14     // Be super-extra paranoid and cast the fn items to fn pointers before blackboxing them.
15     assert_eq!(PTR, b::<fn() -> _>(Unique::<u32>::dangling)().as_ptr());
16 }