mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
9 lines
307 B
Java
9 lines
307 B
Java
import java.util.ArrayList;
|
|
|
|
class Test {
|
|
void foo() {
|
|
ArrayList<String>[] lists1 = new ArrayList<error descr="Array creation with '<>' not allowed"><></error>[5];
|
|
ArrayList<String>[] lists2 = new ArrayList<error descr="Array creation with '<>' not allowed"></*blah blah blah*/></error>[5];
|
|
}
|
|
}
|