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:
@@ -0,0 +1,14 @@
|
||||
class List<T> {}
|
||||
|
||||
class Base<T> {
|
||||
void fo<caret>o(String s, List<T>... l) {}
|
||||
}
|
||||
|
||||
class Inheritor extends Base<Integer> {
|
||||
void foo(String s, List<Integer>... l) {}
|
||||
|
||||
{
|
||||
new Inheritor().foo("a", new List<Integer>());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user