mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 22:46:55 +07:00
11 lines
155 B
Java
11 lines
155 B
Java
class List<T> {}
|
|
|
|
class Test {
|
|
<T> List<T> asList(T... ts) {
|
|
return null;
|
|
}
|
|
void foo () {
|
|
<ref>asList(new Integer[0]);
|
|
}
|
|
}
|