1error[E0271]: type mismatch resolving `<std::vec::IntoIter<u32> as Iterator>::Item == i32`
2  --> $DIR/associated-types-overridden-binding-2.rs:6:43
3   |
4LL |     let _: &dyn I32Iterator<Item = u32> = &vec![42].into_iter();
5   |                                           ^^^^^^^^^^^^^^^^^^^^^ expected `i32`, found `u32`
6   |
7   = note: required for the cast to the object type `dyn Iterator<Item = u32, Item = i32>`
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0271`.
12