Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
consts
/
const-suggest-feature.rs
blob: d76d01a3d5ed82c33b1958a7492faa82080bc62a [
file
] [
log
] [
blame
]
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
()
{}