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