mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
fixes & tests
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
class List<T> {}
|
||||
|
||||
class Base<T> {
|
||||
void foo(List<T>[] l, String s) {}
|
||||
}
|
||||
|
||||
class Inheritor extends Base<Integer> {
|
||||
void foo(List<Integer>[] l, String s) {}
|
||||
|
||||
{
|
||||
new Inheritor().foo(new List[]{new List<Integer>()}, "a");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user