blob: 0be6ee3930f1156fce370bf604a6b363625b637b [file] [log] [blame]
trait T {
type A: S<C<(), i32 = ()> = ()>;
//~^ ERROR associated item constraints are not allowed here
//~| ERROR associated item constraints are not allowed here
}
trait Q {}
trait S {
type C<T>: Q;
}
fn main() {}