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

29 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0017]: references in constants may only refer to immutable values
--> $DIR/E0017.rs:14:30
|
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
error[E0017]: references in statics may only refer to immutable values
--> $DIR/E0017.rs:15:39
|
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
| ^^^^^^ statics require immutable values
error[E0596]: cannot borrow immutable static item as mutable
--> $DIR/E0017.rs:15:44
|
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
--> $DIR/E0017.rs:17:38
|
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
error: aborting due to 4 previous errors
2018-02-19 14:40:25 -06:00
You've got a few errors: E0017, E0596
If you want more information on an error, try using "rustc --explain E0017"