rust/src/test/ui/error-codes/E0017.stderr

29 lines
1.1 KiB
Plaintext
Raw Normal View History

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
error[E0017]: references in statics may only refer to immutable values
2018-12-25 15:56:47 +00:00
--> $DIR/E0017.rs:5:39
|
2019-03-09 12:03:44 +00:00
LL | static STATIC_REF: &'static mut i32 = &mut X;
| ^^^^^^ statics require immutable values
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;
| ^^^^^^ cannot borrow as mutable
2018-02-08 03:35:35 +00:00
error[E0017]: references in statics may only refer to immutable values
--> $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
error: aborting due to 4 previous errors
2018-02-08 03:35:35 +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`.