2022-03-04 13:07:39 +09:00
|
|
|
error[E0432]: unresolved import `not_existing_crate`
|
|
|
|
--> $DIR/unresolved-asterisk-imports.rs:1:5
|
|
|
|
|
|
|
|
|
LL | use not_existing_crate::*;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ maybe a missing crate `not_existing_crate`?
|
2022-05-22 11:48:35 +09:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate not_existing_crate` to use the `not_existing_crate` crate
|
2022-03-04 13:07:39 +09:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|