blob: e33bb53282703b1670f6ef8a7d6195708934adb5 [file] [log] [blame]
interface I<T>{}
interface A extends I<A[]>{}
interface B extends I<B[]>{}
abstract class c{
abstract <T> T baz(T x, T y);
void bar(A x, B y){
baz(x, y);
}
}