]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0396.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / error-codes / E0396.stderr
1 error[E0658]: dereferencing raw mutable pointers in constants is unstable
2   --> $DIR/E0396.rs:3:28
3    |
4 LL | const VALUE: u8 = unsafe { *REG_ADDR };
5    |                            ^^^^^^^^^
6    |
7    = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
8    = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
9
10 error[E0658]: dereferencing raw mutable pointers in constant functions is unstable
11   --> $DIR/E0396.rs:10:11
12    |
13 LL |     match *INFALLIBLE {}
14    |           ^^^^^^^^^^^
15    |
16    = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
17    = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
18
19 error[E0658]: dereferencing raw mutable pointers in constants is unstable
20   --> $DIR/E0396.rs:13:36
21    |
22 LL |     const BAD: () = unsafe { match *INFALLIBLE {} };
23    |                                    ^^^^^^^^^^^
24    |
25    = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
26    = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
27
28 error: aborting due to 3 previous errors
29
30 For more information about this error, try `rustc --explain E0658`.