blob: d76d01a3d5ed82c33b1958a7492faa82080bc62a (
plain)
1
2
3
4
5
6
7
|
const WRITE: () = unsafe {
*std::ptr::null_mut() = 0;
//~^ ERROR dereferencing raw mutable pointers in constants is unstable
//~| HELP add `#![feature(const_mut_refs)]` to the crate attributes to enable
};
fn main() {}
|