2021-09-02 15:20:51 -05:00
|
|
|
error[E0433]: failed to resolve: use of undeclared type `IntoIter`
|
|
|
|
--> $DIR/issue-82956.rs:25:24
|
|
|
|
|
|
|
|
|
LL | let mut iter = IntoIter::new(self);
|
2022-10-27 01:36:07 -05:00
|
|
|
| ^^^^^^^^ use of undeclared type `IntoIter`
|
2021-09-02 15:20:51 -05:00
|
|
|
|
|
2024-06-12 18:51:31 -05:00
|
|
|
help: consider importing one of these structs
|
2021-09-02 15:20:51 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use std::array::IntoIter;
|
2021-09-02 15:20:51 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use std::collections::binary_heap::IntoIter;
|
2021-09-02 15:20:51 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use std::collections::btree_map::IntoIter;
|
2021-09-02 15:20:51 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use std::collections::btree_set::IntoIter;
|
2021-09-02 15:20:51 -05:00
|
|
|
|
|
|
|
|
and 8 other candidates
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-09-02 15:20:51 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|