]> git.lizzy.rs Git - rust.git/blob - src/test/ui/privacy/union-field-privacy-1.stderr
update ui tests
[rust.git] / src / test / ui / privacy / union-field-privacy-1.stderr
1 error[E0451]: field `c` of union `m::U` is private
2   --> $DIR/union-field-privacy-1.rs:12:20
3    |
4 LL |     let u = m::U { c: 0 };
5    |                    ^^^^ field `c` is private
6
7 error[E0451]: field `c` of union `m::U` is private
8   --> $DIR/union-field-privacy-1.rs:16:16
9    |
10 LL |     let m::U { c } = u;
11    |                ^ field `c` is private
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0451`.