blob: 318eafe74f7f9245f1b03d7e66e12d35e62dac75 [file] [log] [blame]
// A regression test for #68653, which was fixed by #68938.
//@ check-pass
trait Fun {
type F<'a: 'a>;
}
impl <T> Fun for T {
type F<'a> = Self;
}
fn main() {}