2023-03-05 03:05:04 -06:00
|
|
|
error[E0277]: `&'a T` is not an iterator
|
2021-08-06 10:46:20 -05:00
|
|
|
--> $DIR/hir-wf-check-erase-regions.rs:7:21
|
2021-08-06 04:36:54 -05:00
|
|
|
|
|
|
|
|
LL | type IntoIter = std::iter::Flatten<std::slice::Iter<'a, T>>;
|
2023-03-05 03:05:04 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `&'a T` is not an iterator
|
2021-08-06 04:36:54 -05:00
|
|
|
|
|
2023-03-05 03:05:04 -06:00
|
|
|
= help: the trait `Iterator` is not implemented for `&'a T`
|
2021-12-13 14:56:40 -06:00
|
|
|
= help: the trait `Iterator` is implemented for `&mut I`
|
2023-10-26 06:36:49 -05:00
|
|
|
= note: required for `Flatten<std::slice::Iter<'a, T>>` to implement `Iterator`
|
|
|
|
note: required by a bound in `std::iter::IntoIterator::IntoIter`
|
|
|
|
--> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
|
2021-08-06 04:36:54 -05:00
|
|
|
|
2023-03-05 03:05:04 -06:00
|
|
|
error[E0277]: `&'a T` is not an iterator
|
2023-10-26 06:36:49 -05:00
|
|
|
--> $DIR/hir-wf-check-erase-regions.rs:7:21
|
2021-08-06 04:36:54 -05:00
|
|
|
|
|
2023-10-26 06:36:49 -05:00
|
|
|
LL | type IntoIter = std::iter::Flatten<std::slice::Iter<'a, T>>;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `&'a T` is not an iterator
|
2021-08-06 04:36:54 -05:00
|
|
|
|
|
2023-03-05 03:05:04 -06:00
|
|
|
= help: the trait `Iterator` is not implemented for `&'a T`
|
2021-12-13 14:56:40 -06:00
|
|
|
= help: the trait `Iterator` is implemented for `&mut I`
|
2023-03-05 03:05:04 -06:00
|
|
|
= note: required for `&'a T` to implement `IntoIterator`
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `Flatten`
|
|
|
|
--> $SRC_DIR/core/src/iter/adapters/flatten.rs:LL:COL
|
2021-08-06 04:36:54 -05:00
|
|
|
|
2023-10-25 05:49:24 -05:00
|
|
|
error[E0277]: `&'a T` is not an iterator
|
2023-10-26 06:36:49 -05:00
|
|
|
--> $DIR/hir-wf-check-erase-regions.rs:11:27
|
2023-10-25 05:49:24 -05:00
|
|
|
|
|
2023-10-26 06:36:49 -05:00
|
|
|
LL | fn into_iter(self) -> Self::IntoIter {
|
|
|
|
| ^^^^^^^^^^^^^^ `&'a T` is not an iterator
|
2023-10-25 05:49:24 -05:00
|
|
|
|
|
|
|
|
= help: the trait `Iterator` is not implemented for `&'a T`
|
|
|
|
= help: the trait `Iterator` is implemented for `&mut I`
|
2023-10-26 06:36:49 -05:00
|
|
|
= note: required for `&'a T` to implement `IntoIterator`
|
|
|
|
note: required by a bound in `Flatten`
|
|
|
|
--> $SRC_DIR/core/src/iter/adapters/flatten.rs:LL:COL
|
2023-10-25 05:49:24 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2021-08-06 04:36:54 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|