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