2018-02-08 03:35:35 +00:00
|
|
|
error[E0017]: references in constants may only refer to immutable values
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0017.rs:4:30
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | const CR: &'static mut i32 = &mut C;
|
2018-02-08 03:35:35 +00:00
|
|
|
| ^^^^^^ constants require immutable values
|
|
|
|
|
2019-02-05 08:37:28 +00:00
|
|
|
error[E0017]: references in statics may only refer to immutable values
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0017.rs:5:39
|
2018-11-19 12:49:07 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
2019-02-05 08:37:28 +00:00
|
|
|
| ^^^^^^ statics require immutable values
|
2018-11-19 12:49:07 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow immutable static item `X` as mutable
|
|
|
|
--> $DIR/E0017.rs:5:39
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^^^ cannot borrow as mutable
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error[E0017]: references in statics may only refer to immutable values
|
2019-11-12 12:20:44 +00:00
|
|
|
--> $DIR/E0017.rs:7:38
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | static CONST_REF: &'static mut i32 = &mut C;
|
2018-02-08 03:35:35 +00:00
|
|
|
| ^^^^^^ statics require immutable values
|
|
|
|
|
2019-11-12 12:20:44 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0017, E0596.
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about an error, try `rustc --explain E0017`.
|