10 lines
206 B
Rust
10 lines
206 B
Rust
// 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() {
|
|
}
|