]> git.proxmox.com Git - rustc.git/blame - src/test/ui/associated-types/associated-types-overridden-binding-2.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / associated-types / associated-types-overridden-binding-2.stderr
CommitLineData
f2b60f7d 1error[E0271]: expected `std::vec::IntoIter<u32>` to be an iterator that yields `i32`, but it yields `u32`
dc9dc135 2 --> $DIR/associated-types-overridden-binding-2.rs:6:43
a1dfa0c6 3 |
dc9dc135 4LL | let _: &dyn I32Iterator<Item = u32> = &vec![42].into_iter();
60c5eb7d 5 | ^^^^^^^^^^^^^^^^^^^^^ expected `i32`, found `u32`
a1dfa0c6 6 |
064997fb 7 = note: required for the cast from `std::vec::IntoIter<u32>` to the object type `dyn Iterator<Item = u32, Item = i32>`
a1dfa0c6
XL
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0271`.