This commit is contained in:
Dmitry Jemerov
2009-09-10 20:25:31 +04:00
parent b7e66aee44
commit 571ab0fc93
40 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
class Test {
void bar() {
new B<String>().foo("");
}
class A<T> {
void foo(T t){}
}
class B<E> extends A<E> {
void fo<caret>o(E e){System.out.println(e);}
}
}