]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/pub-struct-field.stderr
New upstream version 1.19.0+dfsg1
[rustc.git] / src / test / ui / span / pub-struct-field.stderr
1 error[E0124]: field `bar` is already declared
2 --> $DIR/pub-struct-field.rs:16:5
3 |
4 15 | bar: u8,
5 | ------- `bar` first declared here
6 16 | pub bar: u8,
7 | ^^^^^^^^^^^ field already declared
8
9 error[E0124]: field `bar` is already declared
10 --> $DIR/pub-struct-field.rs:17:5
11 |
12 15 | bar: u8,
13 | ------- `bar` first declared here
14 16 | pub bar: u8,
15 17 | pub(crate) bar: u8,
16 | ^^^^^^^^^^^^^^^^^^ field already declared
17
18 error: aborting due to previous error(s)
19