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();
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private struct
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
note: the struct `Foo` is defined here
|
|
|
|
--> $DIR/issue-13641.rs:2:5
|
|
|
|
|
|
|
|
|
LL | struct Foo;
|
|
|
|
| ^^^^^^^^^^^
|
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();
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private enum
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
note: the enum `Bar` is defined here
|
|
|
|
--> $DIR/issue-13641.rs:4:5
|
|
|
|
|
|
|
|
|
LL | enum Bar {}
|
|
|
|
| ^^^^^^^^
|
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`.
|