]> git.proxmox.com Git - rustc.git/blame - src/test/ui/structs/struct-field-privacy.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / structs / struct-field-privacy.stderr
CommitLineData
b7449926 1error[E0616]: field `a` of struct `inner::A` is private
ba9703b0 2 --> $DIR/struct-field-privacy.rs:23:7
b7449926 3 |
532ac7d7 4LL | b.a;
ba9703b0 5 | ^ private field
b7449926
XL
6
7error[E0616]: field `b` of struct `inner::B` is private
ba9703b0 8 --> $DIR/struct-field-privacy.rs:26:7
b7449926 9 |
532ac7d7 10LL | c.b;
ba9703b0 11 | ^ private field
b7449926
XL
12
13error[E0616]: field `a` of struct `xc::A` is private
ba9703b0 14 --> $DIR/struct-field-privacy.rs:28:7
b7449926 15 |
532ac7d7 16LL | d.a;
ba9703b0 17 | ^ private field
b7449926
XL
18
19error[E0616]: field `b` of struct `xc::B` is private
ba9703b0 20 --> $DIR/struct-field-privacy.rs:32:7
b7449926 21 |
532ac7d7 22LL | e.b;
ba9703b0 23 | ^ private field
b7449926 24
1b1a35ee 25error[E0616]: field `1` of struct `Z` is private
ba9703b0 26 --> $DIR/struct-field-privacy.rs:35:7
b7449926 27 |
532ac7d7 28LL | z.1;
ba9703b0 29 | ^ private field
b7449926
XL
30
31error: aborting due to 5 previous errors
32
33For more information about this error, try `rustc --explain E0616`.