// A regression test for #68653, which was fixed by #68938. // check-pass #![feature(generic_associated_types)] trait Fun { type F<'a: 'a>; } impl Fun for T { type F<'a> = Self; } fn main() {}