2021-10-05 03:55:57 -05:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constants is unstable
|
|
|
|
--> $DIR/E0396.rs:3:28
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-07-02 12:00:07 -05:00
|
|
|
LL | const VALUE: u8 = unsafe { *REG_ADDR };
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2021-10-05 03:55:57 -05: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 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constants is unstable
|
|
|
|
--> $DIR/E0396.rs:14:36
|
2020-12-19 13:25:27 -06:00
|
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
LL | const BAD: () = unsafe { match *INFALLIBLE {} };
|
|
|
|
| ^^^^^^^^^^^
|
2020-12-19 13:25:27 -06:00
|
|
|
|
|
2021-10-05 03:55:57 -05: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 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2020-12-19 13:25:27 -06:00
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constants is unstable
|
|
|
|
--> $DIR/E0396.rs:14:36
|
2022-10-15 04:00:32 -05:00
|
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
LL | const BAD: () = unsafe { match *INFALLIBLE {} };
|
|
|
|
| ^^^^^^^^^^^
|
2022-10-15 04:00:32 -05: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 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-10-15 04:00:32 -05:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constant functions is unstable
|
|
|
|
--> $DIR/E0396.rs:10:11
|
2022-10-15 04:00:32 -05:00
|
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
LL | match *INFALLIBLE {}
|
|
|
|
| ^^^^^^^^^^^
|
2022-10-15 04:00:32 -05: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 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-10-15 04:00:32 -05:00
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
error[E0658]: dereferencing raw mutable pointers in constant functions is unstable
|
|
|
|
--> $DIR/E0396.rs:10:11
|
2020-12-19 13:25:27 -06:00
|
|
|
|
|
2024-02-14 06:28:07 -06:00
|
|
|
LL | match *INFALLIBLE {}
|
|
|
|
| ^^^^^^^^^^^
|
2020-12-19 13:25:27 -06:00
|
|
|
|
|
2021-10-05 03:55:57 -05: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 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-10-15 04:00:32 -05:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-12-19 13:25:27 -06:00
|
|
|
|
2022-10-15 04:00:32 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2018-07-02 12:00:07 -05:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|