]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/issue-52202-use-suggestions.stderr
Auto merge of #93718 - thomcc:used-macho, r=pnkfelix
[rust.git] / src / test / ui / rust-2018 / issue-52202-use-suggestions.stderr
1 error[E0422]: cannot find struct, variant or union type `Drain` in this scope
2   --> $DIR/issue-52202-use-suggestions.rs:11:14
3    |
4 LL |     let _d = Drain {};
5    |              ^^^^^ not found in this scope
6    |
7 help: consider importing one of these items
8    |
9 LL | use crate::plumbing::Drain;
10    |
11 LL | use std::collections::binary_heap::Drain;
12    |
13 LL | use std::collections::hash_map::Drain;
14    |
15 LL | use std::collections::hash_set::Drain;
16    |
17      and 3 other candidates
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0422`.