]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/issue-53565.stderr
Sync portable-simd to rust-lang/portable-simd@72df4c45056a8bc0d1b3f06fdc828722177f0763
[rust.git] / src / test / ui / imports / issue-53565.stderr
1 error[E0432]: unresolved imports `std::time::foo`, `std::time::bar`, `std::time::buzz`
2   --> $DIR/issue-53565.rs:1: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:3: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`.