2016-08-08 21:35:15 +09:00
|
|
|
error[E0124]: field `bar` is already declared
|
2017-03-15 14:24:02 -07:00
|
|
|
--> $DIR/pub-struct-field.rs:16:5
|
2016-08-08 21:35:15 +09:00
|
|
|
|
|
2017-03-15 14:24:02 -07:00
|
|
|
15 | bar: u8,
|
2016-08-08 21:35:15 +09:00
|
|
|
| ------- `bar` first declared here
|
2017-11-20 13:13:27 +01:00
|
|
|
16 | pub bar: u8, //~ ERROR is already declared
|
2016-08-08 21:35:15 +09:00
|
|
|
| ^^^^^^^^^^^ field already declared
|
|
|
|
|
|
|
|
error[E0124]: field `bar` is already declared
|
2017-03-15 14:24:02 -07:00
|
|
|
--> $DIR/pub-struct-field.rs:17:5
|
2016-08-08 21:35:15 +09:00
|
|
|
|
|
2017-03-15 14:24:02 -07:00
|
|
|
15 | bar: u8,
|
2016-08-08 21:35:15 +09:00
|
|
|
| ------- `bar` first declared here
|
2017-11-20 13:13:27 +01:00
|
|
|
16 | pub bar: u8, //~ ERROR is already declared
|
|
|
|
17 | pub(crate) bar: u8, //~ ERROR is already declared
|
2016-08-08 21:35:15 +09:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ field already declared
|
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to 2 previous errors
|
2016-08-08 21:35:15 +09:00
|
|
|
|