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