summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0396-fixed.rs
blob: 654b21f05b6fe58e315fa586b73f59969c9e8b20 (plain)
1
2
3
4
5
6
7
8
9
#![feature(const_raw_ptr_deref)]

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

const VALUE: u8 = unsafe { *REG_ADDR };
//~^ ERROR evaluation of constant value failed

fn main() {
}