]> git.proxmox.com Git - rustc.git/blob - src/test/ui/associated-types/associated-types-overridden-binding-2.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.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 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`.