Files
rust/tests/ui/privacy/privacy2.stderr

62 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0432]: unresolved import `bar::foo`
2025-01-30 04:23:14 +00:00
--> $DIR/privacy2.rs:21:9
2018-08-08 14:28:26 +02:00
|
LL | use bar::foo;
| ^^^^^^^^ no `foo` in `bar`
error[E0603]: function import `foo` is private
2025-01-30 04:23:14 +00:00
--> $DIR/privacy2.rs:28:20
2018-08-08 14:28:26 +02: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 14:28:26 +02:00
error: requires `sized` lang_item
2025-01-30 04:23:14 +00:00
--> $DIR/privacy2.rs:16:14
|
LL | pub fn foo() {}
| ^^
error: requires `sized` lang_item
--> $DIR/privacy2.rs:19:12
|
LL | fn test1() {
| ____________^
LL | |
LL | | use bar::foo;
... |
LL | | }
| |_^
error: requires `sized` lang_item
--> $DIR/privacy2.rs:26:12
|
LL | fn test2() {
| ____________^
LL | |
LL | | use bar::glob::foo;
LL | |
LL | | }
| |_^
error: requires `sized` lang_item
--> $DIR/privacy2.rs:32:11
|
LL | fn main() {}
| ^^
2018-08-08 14:28:26 +02:00
2025-01-30 04:23:14 +00:00
error: aborting due to 6 previous errors
2018-08-08 14:28:26 +02:00
Some errors have detailed explanations: E0432, E0603.
2018-08-08 14:28:26 +02:00
For more information about an error, try `rustc --explain E0432`.