error[E0277]: `
>::Item` is not an iterator
--> $DIR/issue-22872.rs:20:40
|
LL | let _: Box >::Item` is not an iterator
|
= help: the trait `Iterator` is not implemented for ` >::Item`
note: required for `Wrapper ` to implement `for<'b> Wrap<'b>`
--> $DIR/issue-22872.rs:7:13
|
LL | impl<'b, P> Wrap<'b> for Wrapper
| ^^^^^^^^ ^^^^^^^^^^
LL | where P: Process<'b>,
LL | >::Item: Iterator {
| -------- unsatisfied trait bound introduced here
= note: required for the cast from `Box (process: P) where P: Process<'static>, >::Item: Iterator {
| ++++++++++++++++++++++++++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.