rust/src/test/ui/issues/issue-22872.stderr

15 lines
747 B
Plaintext
Raw Normal View History

error[E0277]: `<P as Process<'_>>::Item` is not an iterator
2018-10-10 02:00:41 +00:00
--> $DIR/issue-22872.rs:20:36
|
LL | let _: Box<for<'b> Wrap<'b>> = Box::new(Wrapper(process));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ `<P as Process<'_>>::Item` is not an iterator
2018-10-10 02:00:41 +00:00
|
= help: the trait `std::iter::Iterator` is not implemented for `<P as Process<'_>>::Item`
= help: consider adding a `where <P as Process<'_>>::Item: std::iter::Iterator` bound
2018-10-10 02:00:41 +00: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>`
error: aborting due to previous error
2018-10-10 02:00:41 +00:00
For more information about this error, try `rustc --explain E0277`.