about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/cmp_null.fixed
blob: 04b8ec50160b35a205f80f3cdffe40d2fba9eb31 (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
33
34
35
36
37
38
39
40
41
#![warn(clippy::cmp_null)]
#![allow(unused_mut)]

use std::ptr;

fn main() {
    let x = 0;
    let p: *const usize = &x;
    if p.is_null() {
        //~^ cmp_null

        println!("This is surprising!");
    }
    if p.is_null() {
        //~^ cmp_null

        println!("This is surprising!");
    }

    let mut y = 0;
    let mut m: *mut usize = &mut y;
    if m.is_null() {
        //~^ cmp_null

        println!("This is surprising, too!");
    }
    if m.is_null() {
        //~^ cmp_null

        println!("This is surprising, too!");
    }

    let _ = (x as *const ()).is_null();
    //~^ cmp_null
}

fn issue15010() {
    let f: *mut i32 = std::ptr::null_mut();
    debug_assert!(!f.is_null());
    //~^ cmp_null
}