2022-03-04 13:07:39 +09:00
|
|
|
error[E0432]: unresolved import `not_existing_crate`
|
|
|
|
|
--> $DIR/unresolved-asterisk-imports.rs:3:5
|
|
|
|
|
|
|
|
|
|
|
LL | use not_existing_crate::*;
|
2024-11-18 03:42:16 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `not_existing_crate`
|
|
|
|
|
|
|
|
|
|
|
= help: you might be missing a crate named `not_existing_crate`
|
2022-03-04 13:07:39 +09:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-03-04 13:07:39 +09:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|