summaryrefslogtreecommitdiffstats
path: root/src/test/ui/impl-trait/issues/issue-88236.rs
blob: 36d12417354a2a4509aeaa1233294c57ad391d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 higher kinded lifetime bounds on nested opaque types are not supported yet

fn main() {}