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