summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-22872.rs
blob: 5db2891e65e753efffcfeb9d78a37d7bf4f709e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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> {
    let _: Box<dyn for<'b> Wrap<'b>> = Box::new(Wrapper(process));
//~^ ERROR is not an iterator
}

fn main() {}