2018-10-30 16:57:52 -04:00
|
|
|
error[E0277]: `<P as Process<'_>>::Item` is not an iterator
|
2019-05-28 14:46:13 -04:00
|
|
|
--> $DIR/issue-22872.rs:20:40
|
2018-10-09 19:00:41 -07:00
|
|
|
|
|
2019-10-09 15:07:22 -07:00
|
|
|
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`
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | let _: Box<dyn for<'b> Wrap<'b>> = Box::new(Wrapper(process));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ `<P as Process<'_>>::Item` is not an iterator
|
2018-10-09 19:00:41 -07:00
|
|
|
|
|
2018-10-30 16:57:52 -04:00
|
|
|
= help: the trait `std::iter::Iterator` is not implemented for `<P as Process<'_>>::Item`
|
2018-10-09 19:00:41 -07:00
|
|
|
= 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>`
|
|
|
|
|
2018-10-30 16:57:52 -04:00
|
|
|
error: aborting due to previous error
|
2018-10-09 19:00:41 -07:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|