mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 00:15:50 +07:00
ae1825cb0a
GitOrigin-RevId: 8c3e7bcf9d4423515c59b027eca3ca35b0a18ff1
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;
|
|
}
|
|
} |