summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0396.rs
blob: b32853e483d6c7df46cf8009bab51fa4347ebd6b (plain)
1
2
3
4
5
6
7
8
9
// 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

fn main() {
}