rust/src/test/ui/error-codes/E0396.rs

10 lines
206 B
Rust
Raw Normal View History

2018-07-02 17:59:39 +00:00
// gate-test-const_raw_ptr_deref
2016-08-15 11:58:28 +00:00
const REG_ADDR: *const u8 = 0x5f3759df as *const u8;
const VALUE: u8 = unsafe { *REG_ADDR };
//~^ ERROR dereferencing raw pointers in constants is unstable
2016-08-15 11:58:28 +00:00
fn main() {
}