Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
error-codes
/
E0396-fixed.rs
blob: fe20da1a8ea87fa88b4a1e6eb872db31a5c97c03 [
file
] [
log
] [
blame
]
#![
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
()
{
}