blob: 96e371c64f9e59dcda366b7d520a0379de573101 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0432]: unresolved import `unresolved`
--> $DIR/issue-1697.rs:3:5
|
LL | use unresolved::*;
| ^^^^^^^^^^ use of unresolved module or unlinked crate `unresolved`
|
help: you might be missing a crate named `unresolved`, add it to your project and import it in your code
|
LL + extern crate unresolved;
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0432`.
|