blob: 835b08f890751a853a2407902bdba88e9e702d03 (
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 previous error(s)
|