blob: b54f8200666004f34889f87217065446646aff72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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`.
|