blob: cc3c72b496f5f4ea088c587b46c34278a902a630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
error[E0432]: unresolved import `foo::f`
--> $DIR/issue-38293.rs:6:14
|
LL | use foo::f::{self};
| ^^^^ no `f` in `foo`
error[E0423]: expected function, found module `baz`
--> $DIR/issue-38293.rs:15:5
|
LL | baz();
| ^^^ not a function
|
help: possible better candidate is found in another module, you can import it into scope
|
LL | use bar::baz;
|
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0423, E0432.
For more information about an error, try `rustc --explain E0423`.
|