blob: e5ab765bc86145d6fd474d939fcb61bd747281e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#![warn(clippy::cmp_null)]
#![allow(unused_mut)]
use std::ptr;
fn main() {
let x = 0;
let p: *const usize = &x;
if p.is_null() {
//~^ ERROR: comparing with null is better expressed by the `.is_null()` method
//~| NOTE: `-D clippy::cmp-null` implied by `-D warnings`
println!("This is surprising!");
}
if p.is_null() {
//~^ ERROR: comparing with null is better expressed by the `.is_null()` method
println!("This is surprising!");
}
let mut y = 0;
let mut m: *mut usize = &mut y;
if m.is_null() {
//~^ ERROR: comparing with null is better expressed by the `.is_null()` method
println!("This is surprising, too!");
}
if m.is_null() {
//~^ ERROR: comparing with null is better expressed by the `.is_null()` method
println!("This is surprising, too!");
}
let _ = (x as *const ()).is_null();
//~^ ERROR: comparing with null is better expressed by the `.is_null()` method
}
|