]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0396.stderr
Stabilize File::options()
[rust.git] / src / test / ui / error-codes / E0396.stderr
1 error[E0658]: dereferencing raw pointers in constants is unstable
2   --> $DIR/E0396.rs:5:28
3    |
4 LL | const VALUE: u8 = unsafe { *REG_ADDR };
5    |                            ^^^^^^^^^
6    |
7    = note: see issue #51911 <https://github.com/rust-lang/rust/issues/51911> for more information
8    = help: add `#![feature(const_raw_ptr_deref)]` to the crate attributes to enable
9
10 error[E0658]: dereferencing raw pointers in constant functions is unstable
11   --> $DIR/E0396.rs:12:11
12    |
13 LL |     match *INFALLIBLE {}
14    |           ^^^^^^^^^^^
15    |
16    = note: see issue #51911 <https://github.com/rust-lang/rust/issues/51911> for more information
17    = help: add `#![feature(const_raw_ptr_deref)]` to the crate attributes to enable
18
19 error[E0658]: dereferencing raw pointers in constants is unstable
20   --> $DIR/E0396.rs:15:36
21    |
22 LL |     const BAD: () = unsafe { match *INFALLIBLE {} };
23    |                                    ^^^^^^^^^^^
24    |
25    = note: see issue #51911 <https://github.com/rust-lang/rust/issues/51911> for more information
26    = help: add `#![feature(const_raw_ptr_deref)]` 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`.