mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
test++
This commit is contained in:
@@ -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);}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user