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
|
2024-01-10 06:39:02 +00:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constants is unstable
|
|
|
|
--> $DIR/E0396.rs:14:36
|
2020-12-19 19:25:27 +00:00
|
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
LL | const BAD: () = unsafe { match *INFALLIBLE {} };
|
|
|
|
| ^^^^^^^^^^^
|
2020-12-19 19:25:27 +00:00
|
|
|
|
|
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
|
2024-01-10 06:39:02 +00:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2020-12-19 19:25:27 +00:00
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constants is unstable
|
|
|
|
--> $DIR/E0396.rs:14:36
|
2022-10-15 09:00:32 +00:00
|
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
LL | const BAD: () = unsafe { match *INFALLIBLE {} };
|
|
|
|
| ^^^^^^^^^^^
|
2022-10-15 09:00:32 +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
|
2024-01-10 06:39:02 +00:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-10-15 09:00:32 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constant functions is unstable
|
|
|
|
--> $DIR/E0396.rs:10:11
|
2022-10-15 09:00:32 +00:00
|
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
LL | match *INFALLIBLE {}
|
|
|
|
| ^^^^^^^^^^^
|
2022-10-15 09:00:32 +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
|
2024-01-10 06:39:02 +00:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-10-15 09:00:32 +00:00
|
|
|
|
2024-02-14 12:28:07 +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
|
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
LL | match *INFALLIBLE {}
|
|
|
|
| ^^^^^^^^^^^
|
2020-12-19 19:25:27 +00:00
|
|
|
|
|
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
|
2024-01-10 06:39:02 +00:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-10-15 09:00:32 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-12-19 19:25:27 +00:00
|
|
|
|
2022-10-15 09:00:32 +00:00
|
|
|
error: aborting due to 5 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`.
|