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