2019-11-26 21:43:40 -06:00
|
|
|
error[E0658]: references in constants may only refer to immutable values
|
2019-11-28 10:57:34 -06:00
|
|
|
--> $DIR/projection_qualif.rs:10:27
|
2018-11-21 03:42:40 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let b: *mut u32 = &mut a;
|
2018-11-21 03:42:40 -06:00
|
|
|
| ^^^^^^ constants require immutable values
|
2019-11-26 21:43:40 -06:00
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
2018-11-21 03:42:40 -06:00
|
|
|
|
2019-11-19 17:16:58 -06:00
|
|
|
error[E0658]: dereferencing raw pointers in constants is unstable
|
2019-11-28 10:57:34 -06:00
|
|
|
--> $DIR/projection_qualif.rs:11:18
|
2018-11-24 07:38:31 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | unsafe { *b = 5; }
|
2018-11-24 07:38:31 -06:00
|
|
|
| ^^^^^^
|
2019-11-19 17:16:58 -06:00
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
|
|
|
|
= help: add `#![feature(const_raw_ptr_deref)]` to the crate attributes to enable
|
2018-11-24 07:38:31 -06:00
|
|
|
|
2019-11-19 17:16:58 -06:00
|
|
|
error[E0019]: constant contains unimplemented expression type
|
2019-11-28 10:57:34 -06:00
|
|
|
--> $DIR/projection_qualif.rs:11:18
|
2018-11-21 03:42:40 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | unsafe { *b = 5; }
|
2018-11-21 03:42:40 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
2018-11-24 07:38:31 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2018-11-21 03:42:40 -06:00
|
|
|
|
2019-11-26 21:43:40 -06:00
|
|
|
Some errors have detailed explanations: E0019, E0658.
|
|
|
|
For more information about an error, try `rustc --explain E0019`.
|