mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-19 20:37:12 +07:00
9 lines
293 B
Java
9 lines
293 B
Java
import java.util.ArrayList;
|
|
|
|
class Test {
|
|
void foo() {
|
|
ArrayList<String>[] lists1 = <error descr="Cannot create array with '<>'">new ArrayList<>[5]</error>;
|
|
ArrayList<String>[] lists2 = <error descr="Cannot create array with '<>'">new ArrayList</*blah blah blah*/>[5]</error>;
|
|
}
|
|
}
|