2018-08-08 12:28:26 +00:00
|
|
|
error[E0432]: unresolved import `bar::foo`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/privacy2.rs:17:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | use bar::foo;
|
|
|
|
| ^^^^^^^^ no `foo` in `bar`
|
|
|
|
|
|
|
|
error[E0603]: function `foo` is private
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/privacy2.rs:23:20
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | use bar::glob::foo;
|
2018-10-27 17:21:34 +00:00
|
|
|
| ^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: requires `sized` lang_item
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0432, E0603.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0432`.
|