b61570ac11
When encountering a name in an import that could have come from a crate that wasn't imported, use a structured suggestion to suggest `extern crate foo;` pointing at the right place in the crate. When encountering `_` in an import, do not suggest `extern crate _;`. ``` error[E0432]: unresolved import `spam` --> $DIR/import-from-missing-star-3.rs:2:9 | LL | use spam::*; | ^^^^ maybe a missing crate `spam`? | help: consider importing the `spam` crate | LL + extern crate spam; | ```
24 lines
632 B
Plaintext
24 lines
632 B
Plaintext
error[E0432]: unresolved import `NonExistent`
|
|
--> $DIR/issue-55457.rs:1:5
|
|
|
|
|
LL | use NonExistent;
|
|
| ^^^^^^^^^^^
|
|
| |
|
|
| no `NonExistent` in the root
|
|
| help: a similar name exists in the module: `non_existent`
|
|
|
|
error[E0432]: unresolved import `non_existent`
|
|
--> $DIR/issue-55457.rs:2:5
|
|
|
|
|
LL | use non_existent::non_existent;
|
|
| ^^^^^^^^^^^^ you might be missing crate `non_existent`
|
|
|
|
|
help: consider importing the `non_existent` crate
|
|
|
|
|
LL + extern crate non_existent;
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|