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