rust/tests/ui/span/pub-struct-field.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
574 B
Plaintext
Raw Normal View History

2016-08-08 12:35:15 +00:00
error[E0124]: field `bar` is already declared
2018-12-25 15:56:47 +00:00
--> $DIR/pub-struct-field.rs:6:5
2016-08-08 12:35:15 +00:00
|
2018-02-23 00:42:32 +00:00
LL | bar: u8,
2016-08-08 12:35:15 +00:00
| ------- `bar` first declared here
2019-03-09 12:03:44 +00:00
LL | pub bar: u8,
2016-08-08 12:35:15 +00:00
| ^^^^^^^^^^^ field already declared
error[E0124]: field `bar` is already declared
2018-12-25 15:56:47 +00:00
--> $DIR/pub-struct-field.rs:7:5
2016-08-08 12:35:15 +00:00
|
2018-02-23 00:42:32 +00:00
LL | bar: u8,
2016-08-08 12:35:15 +00:00
| ------- `bar` first declared here
2019-03-09 12:03:44 +00:00
LL | pub bar: u8,
LL | pub(crate) bar: u8,
2016-08-08 12:35:15 +00:00
| ^^^^^^^^^^^^^^^^^^ field already declared
error: aborting due to 2 previous errors
2016-08-08 12:35:15 +00:00
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0124`.