mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
13 lines
205 B
Java
13 lines
205 B
Java
// "Surround with array initialization" "true-preview"
|
|
import java.util.List;
|
|
|
|
class X {
|
|
|
|
void x() {
|
|
List<String> l = of(<caret>1);
|
|
}
|
|
|
|
static <E> List<E> of(E[] elements) {
|
|
return null;
|
|
}
|
|
} |