2018-07-15 16:11:54 -05:00
|
|
|
error[E0432]: unresolved import `foo::f`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-38293.rs:6:14
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | use foo::f::{self}; //~ ERROR unresolved import `foo::f`
|
|
|
|
| ^^^^ no `f` in `foo`
|
|
|
|
|
|
|
|
error[E0423]: expected function, found module `baz`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-38293.rs:15:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | baz(); //~ ERROR expected function, found module `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 occurred: E0423, E0432.
|
|
|
|
For more information about an error, try `rustc --explain E0423`.
|