52 lines
2.0 KiB
Rust
52 lines
2.0 KiB
Rust
// check-pass
|
|
|
|
fn main() {
|
|
let fn_ptr = main;
|
|
|
|
// ------------- Function pointers ---------------
|
|
if (fn_ptr as *mut ()).is_null() {}
|
|
//~^ WARN function pointers are not nullable
|
|
if (fn_ptr as *const u8).is_null() {}
|
|
//~^ WARN function pointers are not nullable
|
|
if (fn_ptr as *const ()) == std::ptr::null() {}
|
|
//~^ WARN function pointers are not nullable
|
|
if (fn_ptr as *mut ()) == std::ptr::null_mut() {}
|
|
//~^ WARN function pointers are not nullable
|
|
if (fn_ptr as *const ()) == (0 as *const ()) {}
|
|
//~^ WARN function pointers are not nullable
|
|
if <*const _>::is_null(fn_ptr as *const ()) {}
|
|
//~^ WARN function pointers are not nullable
|
|
if (fn_ptr as *mut fn() as *const fn() as *const ()).is_null() {}
|
|
//~^ WARN function pointers are not nullable
|
|
if (fn_ptr as fn() as *const ()).is_null() {}
|
|
//~^ WARN function pointers are not nullable
|
|
|
|
// ---------------- References ------------------
|
|
if (&mut 8 as *mut i32).is_null() {}
|
|
//~^ WARN references are not nullable
|
|
if (&8 as *const i32).is_null() {}
|
|
//~^ WARN references are not nullable
|
|
if (&8 as *const i32) == std::ptr::null() {}
|
|
//~^ WARN references are not nullable
|
|
let ref_num = &8;
|
|
if (ref_num as *const i32) == std::ptr::null() {}
|
|
//~^ WARN references are not nullable
|
|
if (b"\0" as *const u8).is_null() {}
|
|
//~^ WARN references are not nullable
|
|
if ("aa" as *const str).is_null() {}
|
|
//~^ WARN references are not nullable
|
|
if (&[1, 2] as *const i32).is_null() {}
|
|
//~^ WARN references are not nullable
|
|
if (&mut [1, 2] as *mut i32) == std::ptr::null_mut() {}
|
|
//~^ WARN references are not nullable
|
|
|
|
// ----------------------------------------------
|
|
const ZPTR: *const () = 0 as *const _;
|
|
const NOT_ZPTR: *const () = 1 as *const _;
|
|
|
|
// unlike the uplifted clippy::fn_null_check lint we do
|
|
// not lint on them
|
|
if (fn_ptr as *const ()) == ZPTR {}
|
|
if (fn_ptr as *const ()) == NOT_ZPTR {}
|
|
}
|