blob: a6130d21b5d396953e7aa8028c234ef42c0fc333 [file] [log] [blame]
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<for<'b> Wrap<'b>> = Box::new(Wrapper(process));
//~^ ERROR is not an iterator
//~| ERROR is not satisfied
}
fn main() {}