]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/issues/issue-82956.stderr
Rollup merge of #106707 - ehuss:remove-dupe-sha-1, r=Mark-Simulacrum
[rust.git] / tests / ui / const-generics / issues / issue-82956.stderr
1 error[E0433]: failed to resolve: use of undeclared type `IntoIter`
2   --> $DIR/issue-82956.rs:25:24
3    |
4 LL |         let mut iter = IntoIter::new(self);
5    |                        ^^^^^^^^ use of undeclared type `IntoIter`
6    |
7 help: consider importing one of these items
8    |
9 LL | use std::array::IntoIter;
10    |
11 LL | use std::collections::binary_heap::IntoIter;
12    |
13 LL | use std::collections::btree_map::IntoIter;
14    |
15 LL | use std::collections::btree_set::IntoIter;
16    |
17      and 8 other candidates
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0433`.