blob: 14f560618521d73afc0b6bd179994fb33a57cc88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0433]: failed to resolve: maybe a missing crate `unresolved_crate`?
--> $DIR/unresolved-import-recovery.rs:3:5
|
LL | use unresolved_crate::module::Name;
| ^^^^^^^^^^^^^^^^ maybe a missing crate `unresolved_crate`?
|
= help: consider adding `extern crate unresolved_crate` to use the `unresolved_crate` crate
error: aborting due to previous error
For more information about this error, try `rustc --explain E0433`.
|