mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-20 14:00:49 +07:00
ae1825cb0a
GitOrigin-RevId: 8c3e7bcf9d4423515c59b027eca3ca35b0a18ff1
13 lines
213 B
Java
13 lines
213 B
Java
// "Surround with array initialization" "true-preview"
|
|
import java.util.List;
|
|
|
|
class X {
|
|
|
|
void x() {
|
|
List<String> l = of(new Integer[]{1});
|
|
}
|
|
|
|
static <E> List<E> of(E[] elements) {
|
|
return null;
|
|
}
|
|
} |