2018-08-08 12:28:26 +00:00
|
|
|
error[E0432]: unresolved import `bar::foo`
|
2023-07-11 09:24:59 +00:00
|
|
|
--> $DIR/privacy2.rs:19:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | use bar::foo;
|
|
|
|
| ^^^^^^^^ no `foo` in `bar`
|
|
|
|
|
2020-01-12 13:20:57 +00:00
|
|
|
error[E0603]: function import `foo` is private
|
2023-07-11 09:24:59 +00:00
|
|
|
--> $DIR/privacy2.rs:25:20
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | use bar::glob::foo;
|
2020-03-22 22:36:54 +00:00
|
|
|
| ^^^ private function import
|
2020-01-12 13:04:03 +00:00
|
|
|
|
|
2020-03-07 18:18:29 +00:00
|
|
|
note: the function import `foo` is defined here...
|
2023-07-11 09:24:59 +00:00
|
|
|
--> $DIR/privacy2.rs:12:13
|
2020-01-12 13:04:03 +00:00
|
|
|
|
|
|
|
|
LL | use foo;
|
|
|
|
| ^^^
|
2020-03-07 18:18:29 +00:00
|
|
|
note: ...and refers to the function `foo` which is defined here
|
2023-07-11 09:24:59 +00:00
|
|
|
--> $DIR/privacy2.rs:16:1
|
2020-03-07 18:18:29 +00:00
|
|
|
|
|
|
|
|
LL | pub fn foo() {}
|
2023-11-19 17:46:44 +00:00
|
|
|
| ^^^^^^^^^^^^ you could import this directly
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: requires `sized` lang_item
|
|
|
|
|
2023-02-16 15:28:29 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
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`.
|