]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-overridden-binding-2.stderr
Rollup merge of #98660 - eddyb:invalid-punct-stage1, r=lqd
[rust.git] / src / test / ui / associated-types / associated-types-overridden-binding-2.stderr
1 error[E0271]: type mismatch resolving `<std::vec::IntoIter<u32> as Iterator>::Item == i32`
2   --> $DIR/associated-types-overridden-binding-2.rs:6:43
3    |
4 LL |     let _: &dyn I32Iterator<Item = u32> = &vec![42].into_iter();
5    |                                           ^^^^^^^^^^^^^^^^^^^^^ expected `i32`, found `u32`
6    |
7    = note: required for the cast from `std::vec::IntoIter<u32>` to the object type `dyn Iterator<Item = u32, Item = i32>`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0271`.