rust/src/test/ui/error-codes/E0396-fixed.rs
2018-12-25 21:08:33 -07:00

10 lines
196 B
Rust

#![feature(const_raw_ptr_deref)]
const REG_ADDR: *const u8 = 0x5f3759df as *const u8;
const VALUE: u8 = unsafe { *REG_ADDR };
//~^ ERROR any use of this value will cause an error
fn main() {
}