]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-overridden-binding-2.stderr
f7a1603844be7ce26c8e3d8d6d58be2e12253f75
[rust.git] / src / test / ui / associated-types / associated-types-overridden-binding-2.stderr
1 error[E0271]: expected `std::vec::IntoIter<u32>` to be an iterator of `i32`, but it actually returns items of `u32`
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`.