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

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