rust/src/test/ui/inaccessible-test-modules.stderr

16 lines
620 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0432]: unresolved import `__test`
2018-12-25 09:56:47 -06:00
--> $DIR/inaccessible-test-modules.rs:5:5
2018-08-08 07:28:26 -05:00
|
LL | use __test as x; //~ ERROR unresolved import `__test`
2018-07-20 20:04:02 -05:00
| ^^^^^^^^^^^ no `__test` in the root. Did you mean to use `test`?
2018-08-08 07:28:26 -05:00
error[E0432]: unresolved import `__test_reexports`
2018-12-25 09:56:47 -06:00
--> $DIR/inaccessible-test-modules.rs:6:5
2018-08-08 07:28:26 -05:00
|
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`.