2021-10-05 08:55:57 +00:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constants is unstable
|
|
|
|
--> $DIR/E0396.rs:3:28
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-07-02 17:00:07 +00:00
|
|
|
LL | const VALUE: u8 = unsafe { *REG_ADDR };
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2021-10-05 08:55:57 +00:00
|
|
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2021-10-05 08:55:57 +00:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constant functions is unstable
|
|
|
|
--> $DIR/E0396.rs:10:11
|
2020-12-19 19:25:27 +00:00
|
|
|
|
|
|
|
|
LL | match *INFALLIBLE {}
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2021-10-05 08:55:57 +00:00
|
|
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
2020-12-19 19:25:27 +00:00
|
|
|
|
2021-10-05 08:55:57 +00:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constants is unstable
|
|
|
|
--> $DIR/E0396.rs:13:36
|
2020-12-19 19:25:27 +00:00
|
|
|
|
|
|
|
|
LL | const BAD: () = unsafe { match *INFALLIBLE {} };
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2021-10-05 08:55:57 +00:00
|
|
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
2020-12-19 19:25:27 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2018-07-02 17:00:07 +00:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|