2018-02-07 21:35:35 -06:00
|
|
|
error[E0017]: references in constants may only refer to immutable values
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0017.rs:4:30
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | const CR: &'static mut i32 = &mut C; //~ ERROR E0017
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^^^^^^ constants require immutable values
|
|
|
|
|
2019-02-05 02:37:28 -06:00
|
|
|
error[E0017]: references in statics may only refer to immutable values
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0017.rs:5:39
|
2018-11-19 06:49:07 -06:00
|
|
|
|
|
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017
|
2019-02-05 02:37:28 -06:00
|
|
|
| ^^^^^^ statics require immutable values
|
2018-11-19 06:49:07 -06:00
|
|
|
|
2019-02-05 02:37:28 -06:00
|
|
|
error: cannot mutate statics in the initializer of another static
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0017.rs:5:39
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017
|
2019-02-05 02:37:28 -06:00
|
|
|
| ^^^^^^
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
|
|
error[E0596]: cannot borrow immutable static item as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0017.rs:5:44
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error[E0017]: references in statics may only refer to immutable values
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0017.rs:8:38
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | static CONST_REF: &'static mut i32 = &mut C; //~ ERROR E0017
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^^^^^^ statics require immutable values
|
|
|
|
|
2018-11-19 06:49:07 -06:00
|
|
|
error: aborting due to 5 previous errors
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
Some errors occurred: E0017, E0596.
|
|
|
|
For more information about an error, try `rustc --explain E0017`.
|