]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/projection_qualif.stderr
Rollup merge of #64603 - gilescope:unused-lifetime-warning, r=matthewjasper
[rust.git] / src / test / ui / consts / projection_qualif.stderr
1 error[E0017]: references in constants may only refer to immutable values
2   --> $DIR/projection_qualif.rs:6:27
3    |
4 LL |         let b: *mut u32 = &mut a;
5    |                           ^^^^^^ constants require immutable values
6
7 error[E0019]: constant contains unimplemented expression type
8   --> $DIR/projection_qualif.rs:7:18
9    |
10 LL |         unsafe { *b = 5; }
11    |                  ^^^^^^
12
13 error[E0658]: dereferencing raw pointers in constants is unstable
14   --> $DIR/projection_qualif.rs:7:18
15    |
16 LL |         unsafe { *b = 5; }
17    |                  ^^^^^^
18    |
19    = note: for more information, see https://github.com/rust-lang/rust/issues/51911
20    = help: add `#![feature(const_raw_ptr_deref)]` to the crate attributes to enable
21
22 error: aborting due to 3 previous errors
23
24 Some errors have detailed explanations: E0017, E0019, E0658.
25 For more information about an error, try `rustc --explain E0017`.