// Fixed by #67160 trait Trait1 { type A; } trait Trait2 { type Type1: Trait1; //~^ ERROR: generic associated types are unstable } fn main() {}