mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
14 lines
490 B
Plaintext
14 lines
490 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: Compilation failed, aborting rustdoc
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|