mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
12 lines
442 B
Plaintext
12 lines
442 B
Plaintext
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`.
|