35 lines
1.6 KiB
Plaintext
35 lines
1.6 KiB
Plaintext
error[E0271]: type mismatch resolving `<std::collections::hash_map::Iter<'_, _, _> as Iterator>::Item == &_`
|
|
--> $DIR/issue-33941.rs:4:36
|
|
|
|
|
LL | for _ in HashMap::new().iter().cloned() {}
|
|
| ^^^^^^ expected tuple, found reference
|
|
|
|
|
= note: expected tuple `(&_, &_)`
|
|
found reference `&_`
|
|
|
|
error[E0271]: type mismatch resolving `<std::collections::hash_map::Iter<'_, _, _> as Iterator>::Item == &_`
|
|
--> $DIR/issue-33941.rs:4:14
|
|
|
|
|
LL | for _ in HashMap::new().iter().cloned() {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected tuple, found reference
|
|
|
|
|
= note: expected tuple `(&_, &_)`
|
|
found reference `&_`
|
|
= note: required because of the requirements on the impl of `std::iter::Iterator` for `std::iter::Cloned<std::collections::hash_map::Iter<'_, _, _>>`
|
|
= note: required because of the requirements on the impl of `std::iter::IntoIterator` for `std::iter::Cloned<std::collections::hash_map::Iter<'_, _, _>>`
|
|
= note: required by `std::iter::IntoIterator::into_iter`
|
|
|
|
error[E0271]: type mismatch resolving `<std::collections::hash_map::Iter<'_, _, _> as Iterator>::Item == &_`
|
|
--> $DIR/issue-33941.rs:4:14
|
|
|
|
|
LL | for _ in HashMap::new().iter().cloned() {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected tuple, found reference
|
|
|
|
|
= note: expected tuple `(&_, &_)`
|
|
found reference `&_`
|
|
= note: required because of the requirements on the impl of `Iterator` for `Cloned<std::collections::hash_map::Iter<'_, _, _>>`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0271`.
|