mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
516 B
Plaintext
21 lines
516 B
Plaintext
error[E0432]: unresolved import `main`
|
|
--> $DIR/inaccessible-test-modules.rs:5:5
|
|
|
|
|
LL | use main as x;
|
|
| ^^^^^^^^^ no `main` in the root
|
|
|
|
error[E0432]: unresolved import `test`
|
|
--> $DIR/inaccessible-test-modules.rs:6:5
|
|
|
|
|
LL | use test as y;
|
|
| ^^^^^^^^^ no `test` in the root
|
|
|
|
|
help: consider importing this module instead
|
|
|
|
|
LL | use test::test as y;
|
|
| ~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|