rust/src/test/ui/issues/issue-53565.stderr

21 lines
692 B
Plaintext
Raw Normal View History

error[E0432]: unresolved imports `std::time::foo`, `std::time::bar`, `std::time::buzz`
--> $DIR/issue-53565.rs:10:17
|
LL | use std::time::{foo, bar, buzz};
| ^^^ ^^^ ^^^^ no `buzz` in `time`
| | |
| | no `bar` in `time`
| no `foo` in `time`
error[E0432]: unresolved imports `std::time::abc`, `std::time::def`
2018-11-27 03:56:36 -06:00
--> $DIR/issue-53565.rs:12:17
|
LL | use std::time::{abc, def};
| ^^^ ^^^ no `def` in `time`
| |
| no `abc` in `time`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0432`.