2022-03-04 04:07:39 +00:00
|
|
|
error[E0432]: unresolved import `not_existing_crate`
|
|
|
|
--> $DIR/unresolved-asterisk-imports.rs:1:5
|
|
|
|
|
|
|
|
|
LL | use not_existing_crate::*;
|
2024-07-23 19:43:46 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ you might be missing crate `not_existing_crate`
|
2022-05-22 02:48:35 +00:00
|
|
|
|
|
2024-07-24 19:31:02 +00:00
|
|
|
help: consider importing the `not_existing_crate` crate
|
|
|
|
|
|
|
|
|
LL + extern crate not_existing_crate;
|
|
|
|
|
|
2022-03-04 04:07:39 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-03-04 04:07:39 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|