]> git.lizzy.rs Git - rust.git/blob - src/test/ui/inaccessible-test-modules.stderr
Auto merge of #62748 - luca-barbieri:optimize-refcell-borrow, r=RalfJung
[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;
5    |     ------^^^^^
6    |     |
7    |     no `__test` in the root
8    |     help: a similar name exists in the module: `test`
9
10 error[E0432]: unresolved import `__test_reexports`
11   --> $DIR/inaccessible-test-modules.rs:6:5
12    |
13 LL | use __test_reexports as y;
14    |     ----------------^^^^^
15    |     |
16    |     no `__test_reexports` in the root
17    |     help: a similar name exists in the module: `__test_reexports`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0432`.