blob: 5b964c1a14b992aa6a41e2d53e6fa4720aa052f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0432]: unresolved import `__test`
--> $DIR/inaccessible-test-modules.rs:15:5
|
LL | use __test as x; //~ ERROR unresolved import `__test`
| ^^^^^^^^^^^ no `__test` in the root. Did you mean to use `test`?
error[E0432]: unresolved import `__test_reexports`
--> $DIR/inaccessible-test-modules.rs:16:5
|
LL | use __test_reexports as y; //~ ERROR unresolved import `__test_reexports`
| ^^^^^^^^^^^^^^^^^^^^^ no `__test_reexports` in the root. Did you mean to use `__test_reexports`?
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0432`.
|