]> git.proxmox.com Git - rustc.git/blob - src/test/ui/structs/struct-variant-privacy-xc.stderr
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / ui / structs / struct-variant-privacy-xc.stderr
1 error[E0603]: enum `Bar` is private
2 --> $DIR/struct-variant-privacy-xc.rs:14:33
3 |
4 LL | fn f(b: struct_variant_privacy::Bar) { //~ ERROR enum `Bar` is private
5 | ^^^
6
7 error[E0603]: enum `Bar` is private
8 --> $DIR/struct-variant-privacy-xc.rs:16:33
9 |
10 LL | struct_variant_privacy::Bar::Baz { a: _a } => {} //~ ERROR enum `Bar` is private
11 | ^^^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0603`.