summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0396.rs
blob: 58ed3c2c7227fd1f96647e2fd51cd7eb87a4d5bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// gate-test-const_raw_ptr_deref

const REG_ADDR: *const u8 = 0x5f3759df as *const u8;

const VALUE: u8 = unsafe { *REG_ADDR };
//~^ ERROR dereferencing raw pointers in constants is unstable

const unsafe fn unreachable() -> ! {
    use std::convert::Infallible;

    const INFALLIBLE: *const Infallible = [].as_ptr();
    match *INFALLIBLE {}
    //~^ ERROR dereferencing raw pointers in constant functions is unstable

    const BAD: () = unsafe { match *INFALLIBLE {} };
    //~^ ERROR dereferencing raw pointers in constants is unstable
}

fn main() {
}