]> git.lizzy.rs Git - rust.git/blob - src/test/ui/structs/struct-variant-privacy-xc.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.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:9
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:9
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`.