]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-53565.stderr
Moved and renamed ui issue tests.
[rust.git] / src / test / ui / issues / issue-53565.stderr
1 error[E0432]: unresolved imports `std::time::foo`, `std::time::bar`, `std::time::buzz`
2   --> $DIR/issue-53565.rs:10:17
3    |
4 LL | use std::time::{foo, bar, buzz};
5    |                 ^^^  ^^^  ^^^^ no `buzz` in `time`
6    |                 |    |
7    |                 |    no `bar` in `time`
8    |                 no `foo` in `time`
9
10 error[E0432]: unresolved imports `std::time::abc`, `std::time::def`
11   --> $DIR/issue-53565.rs:11:17
12    |
13 LL | use std::time::{abc, def};
14    |                 ^^^  ^^^ no `def` in `time`
15    |                 |
16    |                 no `abc` in `time`
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0432`.