rust/src/test/ui/issues/issue-13641.stderr

16 lines
337 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0603]: struct `Foo` is private
2018-12-25 09:56:47 -06:00
--> $DIR/issue-13641.rs:9:8
2018-07-15 16:11:54 -05:00
|
LL | a::Foo::new();
| ^^^
2018-07-15 16:11:54 -05:00
error[E0603]: enum `Bar` is private
2018-12-25 09:56:47 -06:00
--> $DIR/issue-13641.rs:11:8
2018-07-15 16:11:54 -05:00
|
LL | a::Bar::new();
| ^^^
2018-07-15 16:11:54 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0603`.