rust/tests/ui/privacy/privacy2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
800 B
Plaintext
Raw Normal View History

2018-08-08 20:28:26 +08:00
error[E0432]: unresolved import `bar::foo`
2023-07-11 17:24:59 +08:00
--> $DIR/privacy2.rs:19:9
2018-08-08 20:28:26 +08:00
|
LL | use bar::foo;
| ^^^^^^^^ no `foo` in `bar`
error[E0603]: function import `foo` is private
2023-07-11 17:24:59 +08:00
--> $DIR/privacy2.rs:25:20
2018-08-08 20:28:26 +08:00
|
LL | use bar::glob::foo;
| ^^^ private function import
|
note: the function import `foo` is defined here...
2023-07-11 17:24:59 +08:00
--> $DIR/privacy2.rs:12:13
|
LL | use foo;
| ^^^
note: ...and refers to the function `foo` which is defined here
2023-07-11 17:24:59 +08:00
--> $DIR/privacy2.rs:16:1
|
LL | pub fn foo() {}
| ^^^^^^^^^^^^ you could import this directly
2018-08-08 20:28:26 +08:00
error: requires `sized` lang_item
error: aborting due to 3 previous errors
2018-08-08 20:28:26 +08:00
Some errors have detailed explanations: E0432, E0603.
2018-08-08 20:28:26 +08:00
For more information about an error, try `rustc --explain E0432`.