blob: c66361c8546b839046fb47b9fcf2556eeba2c395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
error[E0124]: field `bar` is already declared
--> $DIR/pub-struct-field.rs:16:5
|
15 | bar: u8,
| ------- `bar` first declared here
16 | pub bar: u8,
| ^^^^^^^^^^^ field already declared
error[E0124]: field `bar` is already declared
--> $DIR/pub-struct-field.rs:17:5
|
15 | bar: u8,
| ------- `bar` first declared here
16 | pub bar: u8,
17 | pub(crate) bar: u8,
| ^^^^^^^^^^^^^^^^^^ field already declared
error: aborting due to 2 previous errors
|