2018-08-08 07:28:26 -05:00
|
|
|
error[E0432]: unresolved import `bar::foo`
|
|
|
|
--> $DIR/privacy2.rs:27:9
|
|
|
|
|
|
|
|
|
LL | use bar::foo;
|
|
|
|
| ^^^^^^^^ no `foo` in `bar`
|
|
|
|
|
|
|
|
error[E0603]: function `foo` is private
|
2018-10-27 12:21:34 -05:00
|
|
|
--> $DIR/privacy2.rs:33:20
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use bar::glob::foo;
|
2018-10-27 12:21:34 -05:00
|
|
|
| ^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: requires `sized` lang_item
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
Some errors occurred: E0432, E0603.
|
|
|
|
For more information about an error, try `rustc --explain E0432`.
|