]> git.lizzy.rs Git - rust.git/blob - src/test/ui/structs/struct-variant-privacy.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / structs / struct-variant-privacy.stderr
1 error[E0603]: enum `Bar` is private
2   --> $DIR/struct-variant-privacy.rs:16:9
3    |
4 LL | fn f(b: foo::Bar) { //~ ERROR enum `Bar` is private
5    |         ^^^^^^^^
6
7 error[E0603]: enum `Bar` is private
8   --> $DIR/struct-variant-privacy.rs:18:9
9    |
10 LL |         foo::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`.