]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-overridden-binding-2.stderr
Rollup merge of #66013 - nnethercote:avoid-hashing-twice-in-get_query, r=Zoxc
[rust.git] / src / test / ui / associated-types / associated-types-overridden-binding-2.stderr
1 error[E0271]: type mismatch resolving `<std::vec::IntoIter<u32> as std::iter::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: expected type `i32`
8               found type `u32`
9    = note: required for the cast to the object type `dyn std::iter::Iterator<Item = u32, Item = i32>`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0271`.