rust/src/test/ui/span/pub-struct-field.stderr

21 lines
676 B
Plaintext
Raw Normal View History

2016-08-08 07:35:15 -05:00
error[E0124]: field `bar` is already declared
2017-03-15 16:24:02 -05:00
--> $DIR/pub-struct-field.rs:16:5
2016-08-08 07:35:15 -05:00
|
2018-02-22 18:42:32 -06:00
LL | bar: u8,
2016-08-08 07:35:15 -05:00
| ------- `bar` first declared here
2018-02-22 18:42:32 -06:00
LL | pub bar: u8, //~ ERROR is already declared
2016-08-08 07:35:15 -05:00
| ^^^^^^^^^^^ field already declared
error[E0124]: field `bar` is already declared
2017-03-15 16:24:02 -05:00
--> $DIR/pub-struct-field.rs:17:5
2016-08-08 07:35:15 -05:00
|
2018-02-22 18:42:32 -06:00
LL | bar: u8,
2016-08-08 07:35:15 -05:00
| ------- `bar` first declared here
2018-02-24 17:01:39 -06:00
LL | pub bar: u8, //~ ERROR is already declared
2018-02-22 18:42:32 -06:00
LL | pub(crate) bar: u8, //~ ERROR is already declared
2016-08-08 07:35:15 -05:00
| ^^^^^^^^^^^^^^^^^^ field already declared
error: aborting due to 2 previous errors
2016-08-08 07:35:15 -05:00
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0124"