blob: 37cfe960600b085264606638874641279c79c66c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0603]: enum `Foo` is private
--> $DIR/issue-11680.rs:16:14
|
LL | let _b = other::Foo::Bar(1);
| ^^^^^^^^^^^^^^^
error[E0603]: enum `Foo` is private
--> $DIR/issue-11680.rs:19:14
|
LL | let _b = other::test::Foo::Bar(1);
| ^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0603`.
|