mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 01:46:46 +00:00
10 lines
181 B
Rust
10 lines
181 B
Rust
#![feature(const_mut_refs)]
|
|
|
|
const REG_ADDR: *mut u8 = 0x5f3759df as *mut u8;
|
|
|
|
const VALUE: u8 = unsafe { *REG_ADDR };
|
|
//~^ ERROR evaluation of constant value failed
|
|
|
|
fn main() {
|
|
}
|