SOE (IDEA-57496)

This commit is contained in:
anna
2012-10-23 21:08:45 +02:00
parent f57c2243d7
commit 229c91c903
3 changed files with 14 additions and 4 deletions
@@ -0,0 +1,11 @@
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);
}
}