]> git.lizzy.rs Git - rust.git/blob - tests/ui/structs/struct-variant-privacy-xc.stderr
internally change regions to be covariant
[rust.git] / tests / ui / structs / struct-variant-privacy-xc.stderr
1 error[E0603]: enum `Bar` is private
2   --> $DIR/struct-variant-privacy-xc.rs:4:33
3    |
4 LL | fn f(b: struct_variant_privacy::Bar) {
5    |                                 ^^^ private enum
6    |
7 note: the enum `Bar` is defined here
8   --> $DIR/auxiliary/struct_variant_privacy.rs:1:1
9    |
10 LL | enum Bar {
11    | ^^^^^^^^
12
13 error[E0603]: enum `Bar` is private
14   --> $DIR/struct-variant-privacy-xc.rs:7:33
15    |
16 LL |         struct_variant_privacy::Bar::Baz { a: _a } => {}
17    |                                 ^^^ private enum
18    |
19 note: the enum `Bar` is defined here
20   --> $DIR/auxiliary/struct_variant_privacy.rs:1:1
21    |
22 LL | enum Bar {
23    | ^^^^^^^^
24
25 error: aborting due to 2 previous errors
26
27 For more information about this error, try `rustc --explain E0603`.