summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/cmp_null.rs
blob: 257f7ba2662773393e89a32977688f1fd9712a14 (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 == ptr::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 ptr::null() == p {
        //~^ 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 == ptr::null_mut() {
        //~^ ERROR: comparing with null is better expressed by the `.is_null()` method
        println!("This is surprising, too!");
    }
    if ptr::null_mut() == m {
        //~^ ERROR: comparing with null is better expressed by the `.is_null()` method
        println!("This is surprising, too!");
    }

    let _ = x as *const () == ptr::null();
    //~^ ERROR: comparing with null is better expressed by the `.is_null()` method
}