blob: cbbceb72af39232f3306bd3b91bdbbd8172c08c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0603]: struct `Foo` is private
--> $DIR/issue-13641.rs:19:8
|
LL | a::Foo::new();
| ^^^
error[E0603]: enum `Bar` is private
--> $DIR/issue-13641.rs:21:8
|
LL | a::Bar::new();
| ^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0603`.
|