about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/uninhabited_references.rs
blob: 9b3616ad51871e9303636c13b6c2157d642a0643 (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
#![warn(clippy::uninhabited_references)]
#![allow(clippy::missing_transmute_annotations)]
#![feature(never_type)]

fn ret_uninh_ref() -> &'static std::convert::Infallible {
    //~^ uninhabited_references
    unsafe { std::mem::transmute(&()) }
}

macro_rules! ret_something {
    ($name:ident, $ty:ty) => {
        fn $name(x: &$ty) -> &$ty {
            //~^ uninhabited_references
            &*x
            //~^ uninhabited_references
        }
    };
}

ret_something!(id_u32, u32);
ret_something!(id_never, !);

fn main() {
    let x = ret_uninh_ref();
    let _ = *x;
    //~^ uninhabited_references
}