mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
186 B
Java
15 lines
186 B
Java
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);}
|
|
}
|
|
}
|
|
|