rust/tests/ui/consts/ptr_is_null.rs

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

17 lines
416 B
Rust
Raw Normal View History

2020-07-30 05:27:34 -05:00
// compile-flags: --crate-type=lib
// check-pass
2021-10-03 23:33:43 -05:00
#![feature(const_ptr_is_null)]
2020-07-30 05:27:34 -05:00
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());