2018-08-08 07:28:26 -05:00
|
|
|
error[E0432]: unresolved import `bar::foo`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/privacy2.rs:17:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use bar::foo;
|
|
|
|
| ^^^^^^^^ no `foo` in `bar`
|
|
|
|
|
2020-01-12 07:20:57 -06:00
|
|
|
error[E0603]: function import `foo` is private
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/privacy2.rs:23:20
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | use bar::glob::foo;
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private function import
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
2020-03-07 12:18:29 -06:00
|
|
|
note: the function import `foo` is defined here...
|
2020-01-12 07:04:03 -06:00
|
|
|
--> $DIR/privacy2.rs:10:13
|
|
|
|
|
|
|
|
|
LL | use foo;
|
|
|
|
| ^^^
|
2020-03-07 12:18:29 -06:00
|
|
|
note: ...and refers to the function `foo` which is defined here
|
|
|
|
--> $DIR/privacy2.rs:14:1
|
|
|
|
|
|
|
|
|
LL | pub fn foo() {}
|
|
|
|
| ^^^^^^^^^^^^ consider importing it directly
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: requires `sized` lang_item
|
|
|
|
|
2022-07-19 04:00:51 -05:00
|
|
|
error: requires `sized` lang_item
|
|
|
|
|
|
|
|
error: requires `sized` lang_item
|
|
|
|
|
|
|
|
error: requires `sized` lang_item
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0432, E0603.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0432`.
|