blob: 250b8fc109d3c9de04ff8984fdbca646f69f4252 [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);
}
}