2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::cmp_null)]
|
2016-08-22 16:29:29 +00:00
|
|
|
#![allow(unused_mut)]
|
|
|
|
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = 0;
|
2018-12-09 22:26:16 +00:00
|
|
|
let p: *const usize = &x;
|
2017-02-08 13:58:07 +00:00
|
|
|
if p == ptr::null() {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: comparing with null is better expressed by the `.is_null()` method
|
|
|
|
//~| NOTE: `-D clippy::cmp-null` implied by `-D warnings`
|
2016-08-22 16:29:29 +00:00
|
|
|
println!("This is surprising!");
|
|
|
|
}
|
|
|
|
let mut y = 0;
|
2018-12-09 22:26:16 +00:00
|
|
|
let mut m: *mut usize = &mut y;
|
2017-02-08 13:58:07 +00:00
|
|
|
if m == ptr::null_mut() {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: comparing with null is better expressed by the `.is_null()` method
|
2016-08-22 16:29:29 +00:00
|
|
|
println!("This is surprising, too!");
|
|
|
|
}
|
|
|
|
}
|