]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0451.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / error-codes / E0451.stderr
CommitLineData
1b1a35ee 1error[E0451]: field `b` of struct `Foo` is private
9fa01778 2 --> $DIR/E0451.rs:14:21
2c00a5a8 3 |
532ac7d7 4LL | let bar::Foo{a, b} = foo;
ba9703b0 5 | ^ private field
2c00a5a8 6
1b1a35ee 7error[E0451]: field `b` of struct `Foo` is private
0731742a 8 --> $DIR/E0451.rs:18:29
2c00a5a8 9 |
532ac7d7 10LL | let f = bar::Foo{ a: 0, b: 0 };
ba9703b0 11 | ^^^^ private field
2c00a5a8
XL
12
13error: aborting due to 2 previous errors
14
0531ce1d 15For more information about this error, try `rustc --explain E0451`.