mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
11 lines
173 B
Java
11 lines
173 B
Java
class List<T> {}
|
|
|
|
class Test {
|
|
<T> List<T> asList(T... ts) {
|
|
return null;
|
|
}
|
|
void foo () {
|
|
<caret>asList(new Integer[0], new Integer[0]);
|
|
}
|
|
}
|