summary refs log tree commit diff
path: root/src/test/ui/issues/issue-22872.stderr
blob: 283a5e04a8b6f8d19199e5cb28e65719999c9731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: `<P as Process<'_>>::Item` is not an iterator
  --> $DIR/issue-22872.rs:20:40
   |
LL | fn push_process<P>(process: P) where P: Process<'static> {
   |                                                         - help: consider further restricting the associated type: `, <P as Process<'_>>::Item: std::iter::Iterator`
LL |     let _: Box<dyn for<'b> Wrap<'b>> = Box::new(Wrapper(process));
   |                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^ `<P as Process<'_>>::Item` is not an iterator
   |
   = help: the trait `std::iter::Iterator` is not implemented for `<P as Process<'_>>::Item`
   = note: required because of the requirements on the impl of `for<'b> Wrap<'b>` for `Wrapper<P>`
   = note: required for the cast to the object type `dyn for<'b> Wrap<'b>`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.