]> git.lizzy.rs Git - rust.git/blob - src/test/ui/inaccessible-test-modules.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / inaccessible-test-modules.stderr
1 error[E0432]: unresolved import `__test`
2   --> $DIR/inaccessible-test-modules.rs:5:5
3    |
4 LL | use __test as x; //~ ERROR unresolved import `__test`
5    |     ^^^^^^^^^^^ no `__test` in the root. Did you mean to use `test`?
6
7 error[E0432]: unresolved import `__test_reexports`
8   --> $DIR/inaccessible-test-modules.rs:6:5
9    |
10 LL | use __test_reexports as y; //~ ERROR unresolved import `__test_reexports`
11    |     ^^^^^^^^^^^^^^^^^^^^^ no `__test_reexports` in the root. Did you mean to use `__test_reexports`?
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0432`.