| error[E0432]: unresolved import `zed::baz` |
| --> $DIR/import.rs:5:5 |
| | |
| LL | use zed::baz; |
| | ^^^^^^^^ no `baz` in `zed` |
| | |
| help: a similar name exists in the module |
| | |
| LL - use zed::baz; |
| LL + use zed::bar; |
| | |
| |
| error[E0432]: unresolved import `foo` |
| --> $DIR/import.rs:13:9 |
| | |
| LL | use foo; |
| | ^^^ no `foo` in the root |
| |
| error[E0603]: unresolved item import `foo` is private |
| --> $DIR/import.rs:18:10 |
| | |
| LL | zed::foo(); |
| | ^^^ private unresolved item import |
| | |
| note: the unresolved item import `foo` is defined here |
| --> $DIR/import.rs:13:9 |
| | |
| LL | use foo; |
| | ^^^ |
| |
| error: aborting due to 3 previous errors |
| |
| Some errors have detailed explanations: E0432, E0603. |
| For more information about an error, try `rustc --explain E0432`. |