mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
13 lines
213 B
Java
13 lines
213 B
Java
// "Surround with array initialization" "false"
|
|
import java.util.List;
|
|
|
|
class X {
|
|
|
|
void x() {
|
|
List<String> l = of(new<caret> Integer[]{1});
|
|
}
|
|
|
|
static <E> List<E> of(E[] elements) {
|
|
return null;
|
|
}
|
|
} |