summaryrefslogtreecommitdiff
path: root/tests/ui/const-generics/issues/issue-82956.stderr
blob: 5e380eea81cabeedc0a8a08eca8eb972777829e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0433]: failed to resolve: use of undeclared type `IntoIter`
  --> $DIR/issue-82956.rs:25:24
   |
LL |         let mut iter = IntoIter::new(self);
   |                        ^^^^^^^^ use of undeclared type `IntoIter`
   |
help: consider importing one of these structs
   |
LL + use std::array::IntoIter;
   |
LL + use std::collections::binary_heap::IntoIter;
   |
LL + use std::collections::btree_map::IntoIter;
   |
LL + use std::collections::btree_set::IntoIter;
   |
     and 9 other candidates

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0433`.