summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/associated-types-overridden-binding-2.stderr
blob: dbd9a44ed97743769c32d37bb19b086f0be6ecb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0271]: type mismatch resolving `<std::vec::IntoIter<u32> as Iterator>::Item == i32`
  --> $DIR/associated-types-overridden-binding-2.rs:6:43
   |
LL |     let _: &dyn I32Iterator<Item = u32> = &vec![42].into_iter();
   |                                           ^^^^^^^^^^^^^^^^^^^^^ expected `i32`, found `u32`
   |
   = note: required for the cast from `std::vec::IntoIter<u32>` to the object type `dyn Iterator<Item = u32, Item = i32>`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0271`.