rust/tests/ui/const-generics/issues/issue-82956.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
615 B
Plaintext
Raw Normal View History

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);
| ^^^^^^^^ use of undeclared type `IntoIter`
2021-09-02 15:20:51 -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
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`.