summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/transmuting_null.rs
blob: 88b8c9965237dc41a413bc8b9c23a9b1d0dd1cde (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
#![allow(dead_code)]
#![warn(clippy::transmuting_null)]
#![allow(clippy::zero_ptr)]
#![allow(clippy::transmute_ptr_to_ref)]
#![allow(clippy::eq_op)]

// Easy to lint because these only span one line.
fn one_liners() {
    unsafe {
        let _: &u64 = std::mem::transmute(0 as *const u64);
        //~^ ERROR: transmuting a known null pointer into a reference
        //~| NOTE: `-D clippy::transmuting-null` implied by `-D warnings`
        let _: &u64 = std::mem::transmute(std::ptr::null::<u64>());
        //~^ ERROR: transmuting a known null pointer into a reference
    }
}

pub const ZPTR: *const usize = 0 as *const _;
pub const NOT_ZPTR: *const usize = 1 as *const _;

fn transmute_const() {
    unsafe {
        // Should raise a lint.
        let _: &u64 = std::mem::transmute(ZPTR);
        //~^ ERROR: transmuting a known null pointer into a reference
        // Should NOT raise a lint.
        let _: &u64 = std::mem::transmute(NOT_ZPTR);
    }
}

fn main() {
    one_liners();
    transmute_const();
}