summary refs log tree commit diff
path: root/src/test/ui/span/pub-struct-field.stderr
blob: 2c002c34736c54bca4bbd25d93f37c5a6e8cb192 (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:18:5
   |
17 |     bar: u8,
   |     ------- `bar` first declared here
18 |     pub bar: u8,
   |     ^^^^^^^^^^^ field already declared

error[E0124]: field `bar` is already declared
  --> $DIR/pub-struct-field.rs:19:5
   |
17 |     bar: u8,
   |     ------- `bar` first declared here
18 |     pub bar: u8,
19 |     pub(crate) bar: u8,
   |     ^^^^^^^^^^^^^^^^^^ field already declared

error: aborting due to 2 previous errors