blob: 5005af46ee187463e569c002fb5527c2d2080dd3 [file] [log] [blame] [edit]
// this used to cause stack overflows
trait Hrtb<'a> {
type Assoc;
}
impl<'a> Hrtb<'a> for () {
type Assoc = ();
}
impl<'a> Hrtb<'a> for &'a () {
type Assoc = ();
}
fn make_impl() -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {}
//~^ ERROR `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
fn make_weird_impl<'b>(x: &'b ()) -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {
//~^ ERROR `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
&()
}
fn make_bad_impl<'b>(x: &'b ()) -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {
//~^ ERROR `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
x
}
fn main() {}