10 lines
374 B
Rust
10 lines
374 B
Rust
const WRITE: () = unsafe {
|
|
*std::ptr::null_mut() = 0;
|
|
//~^ ERROR dereferencing raw pointers in constants is unstable
|
|
//~| HELP add `#![feature(const_raw_ptr_deref)]` to the crate attributes to enable
|
|
//~| ERROR constant contains unimplemented expression type
|
|
//~| HELP add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
|
};
|
|
|
|
fn main() {}
|