rust/tests/ui/privacy/privacy2.stderr

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

36 lines
905 B
Plaintext
Raw Normal View History

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`
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;
| ^^^ private function import
|
note: the function import `foo` is defined here...
--> $DIR/privacy2.rs:10:13
|
LL | use foo;
| ^^^
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
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
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`.