2018-11-21 03:42:40 -06:00
|
|
|
error[E0017]: references in constants may only refer to immutable values
|
2018-12-28 13:05:22 -06:00
|
|
|
--> $DIR/projection_qualif.rs:6:27
|
2018-11-21 03:42:40 -06:00
|
|
|
|
|
|
|
|
LL | let b: *mut u32 = &mut a; //~ ERROR may only refer to immutable values
|
|
|
|
| ^^^^^^ constants require immutable values
|
|
|
|
|
2018-11-24 07:38:31 -06:00
|
|
|
error[E0019]: constant contains unimplemented expression type
|
2018-12-28 13:05:22 -06:00
|
|
|
--> $DIR/projection_qualif.rs:7:18
|
2018-11-24 07:38:31 -06:00
|
|
|
|
|
|
|
|
LL | unsafe { *b = 5; } //~ ERROR dereferencing raw pointers in constants
|
|
|
|
| ^^^^^^
|
|
|
|
|
2018-11-21 03:42:40 -06:00
|
|
|
error[E0658]: dereferencing raw pointers in constants is unstable (see issue #51911)
|
2018-12-28 13:05:22 -06:00
|
|
|
--> $DIR/projection_qualif.rs:7:18
|
2018-11-21 03:42:40 -06:00
|
|
|
|
|
|
|
|
LL | unsafe { *b = 5; } //~ ERROR dereferencing raw pointers in constants
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(const_raw_ptr_deref)] to the crate attributes to enable
|
|
|
|
|
2018-11-24 07:38:31 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2018-11-21 03:42:40 -06:00
|
|
|
|
2018-11-24 07:38:31 -06:00
|
|
|
Some errors occurred: E0017, E0019, E0658.
|
2018-11-21 03:42:40 -06:00
|
|
|
For more information about an error, try `rustc --explain E0017`.
|