2024-07-23 14:43:46 -05:00
|
|
|
error[E0433]: failed to resolve: you might be missing crate `unresolved_crate`
|
2022-04-10 09:21:58 -05:00
|
|
|
--> $DIR/unresolved-import-recovery.rs:3:5
|
|
|
|
|
|
|
|
|
LL | use unresolved_crate::module::Name;
|
2024-07-23 14:43:46 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ you might be missing crate `unresolved_crate`
|
2022-05-21 21:48:35 -05:00
|
|
|
|
|
2024-07-24 14:31:02 -05:00
|
|
|
help: consider importing the `unresolved_crate` crate
|
|
|
|
|
|
|
|
|
LL + extern crate unresolved_crate;
|
|
|
|
|
|
2022-04-10 09:21:58 -05:00
|
|
|
|
2023-11-21 10:44:51 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-10 09:21:58 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|