2021-09-02 20:20:51 +00: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 06:36:07 +00:00
|
|
|
| ^^^^^^^^ use of undeclared type `IntoIter`
|
2021-09-02 20:20:51 +00:00
|
|
|
|
|
2024-06-12 23:51:31 +00:00
|
|
|
help: consider importing one of these structs
|
2021-09-02 20:20:51 +00:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::array::IntoIter;
|
2021-09-02 20:20:51 +00:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::collections::binary_heap::IntoIter;
|
2021-09-02 20:20:51 +00:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::collections::btree_map::IntoIter;
|
2021-09-02 20:20:51 +00:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::collections::btree_set::IntoIter;
|
2021-09-02 20:20:51 +00:00
|
|
|
|
|
2024-06-22 19:17:57 +00:00
|
|
|
and 9 other candidates
|
2021-09-02 20:20:51 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-09-02 20:20:51 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|