2024-11-18 03:42:16 +00:00
|
|
|
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `unresolved_crate`
|
2022-04-10 14:21:58 +00:00
|
|
|
--> $DIR/unresolved-import-recovery.rs:3:5
|
|
|
|
|
|
|
|
|
LL | use unresolved_crate::module::Name;
|
2024-11-18 03:42:16 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `unresolved_crate`
|
2022-05-22 02:48:35 +00:00
|
|
|
|
|
2024-11-18 03:42:16 +00:00
|
|
|
help: you might be missing a crate named `unresolved_crate`, add it to your project and import it in your code
|
2024-07-24 19:31:02 +00:00
|
|
|
|
|
|
|
|
LL + extern crate unresolved_crate;
|
|
|
|
|
|
2022-04-10 14:21:58 +00:00
|
|
|
|
2023-11-21 16:44:51 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-10 14:21:58 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|