This commit is contained in:
Anna Kozlova
2014-04-22 20:02:29 +02:00
parent 9914757d15
commit bd9dbfc7d5
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,8 @@
interface I<T, K extends Integer> {
void m(T t);
void m(K k);
}
@FunctionalInterface
interface IEx extends I<Integer, Integer> { }