mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
18 lines
453 B
Rust
18 lines
453 B
Rust
//@ compile-flags: --crate-type=lib
|
|
//@ check-pass
|
|
|
|
#![feature(const_ptr_is_null)]
|
|
#![allow(useless_ptr_null_checks)]
|
|
|
|
const FOO: &usize = &42;
|
|
|
|
pub const _: () = assert!(!(FOO as *const usize).is_null());
|
|
|
|
pub const _: () = assert!(!(42 as *const usize).is_null());
|
|
|
|
pub const _: () = assert!((0 as *const usize).is_null());
|
|
|
|
pub const _: () = assert!(std::ptr::null::<usize>().is_null());
|
|
|
|
pub const _: () = assert!(!("foo" as *const str).is_null());
|