blob: cae1ebb0e29e206cb06b3002daf9ec2c0a3853e5 [file] [log] [blame]
error[E0603]: enum `Foo` is private
--> $DIR/imported-enum-is-private.rs:7:21
|
LL | let _b = other::Foo::Bar(1);
| ^^^ --- tuple variant `Bar` is not publicly re-exported
| |
| private enum
|
note: the enum `Foo` is defined here
--> $DIR/auxiliary/imported-enum-is-private.rs:3:1
|
LL | enum Foo {
| ^^^^^^^^
error[E0603]: enum `Foo` is private
--> $DIR/imported-enum-is-private.rs:10:27
|
LL | let _b = other::test::Foo::Bar(1);
| ^^^ --- tuple variant `Bar` is not publicly re-exported
| |
| private enum
|
note: the enum `Foo` is defined here
--> $DIR/auxiliary/imported-enum-is-private.rs:8:5
|
LL | enum Foo {
| ^^^^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0603`.