]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-22872.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-22872.stderr
CommitLineData
0731742a 1error[E0277]: `<P as Process<'_>>::Item` is not an iterator
dc9dc135 2 --> $DIR/issue-22872.rs:20:40
0bf4aa26 3 |
dc9dc135
XL
4LL | let _: Box<dyn for<'b> Wrap<'b>> = Box::new(Wrapper(process));
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ `<P as Process<'_>>::Item` is not an iterator
0bf4aa26 6 |
1b1a35ee 7 = help: the trait `Iterator` is not implemented for `<P as Process<'_>>::Item`
0bf4aa26
XL
8 = note: required because of the requirements on the impl of `for<'b> Wrap<'b>` for `Wrapper<P>`
9 = note: required for the cast to the object type `dyn for<'b> Wrap<'b>`
f9f354fc
XL
10help: consider further restricting the associated type
11 |
1b1a35ee
XL
12LL | fn push_process<P>(process: P) where P: Process<'static>, <P as Process<'_>>::Item: Iterator {
13 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0bf4aa26 14
0731742a 15error: aborting due to previous error
0bf4aa26
XL
16
17For more information about this error, try `rustc --explain E0277`.