rust/tests/ui/issues/issue-22872.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
435 B
Rust
Raw Normal View History

2018-10-10 02:00:41 +00:00
trait Wrap<'b> {
fn foo(&'b mut self);
}
struct Wrapper<P>(P);
impl<'b, P> Wrap<'b> for Wrapper<P>
where P: Process<'b>,
<P as Process<'b>>::Item: Iterator {
fn foo(&mut self) {}
}
pub trait Process<'a> {
type Item;
fn bar(&'a self);
}
fn push_process<P>(process: P) where P: Process<'static> {
2019-05-28 18:46:13 +00:00
let _: Box<dyn for<'b> Wrap<'b>> = Box::new(Wrapper(process));
2018-11-27 09:56:36 +00:00
//~^ ERROR is not an iterator
2018-10-10 02:00:41 +00:00
}
fn main() {}