mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
232 B
Java
10 lines
232 B
Java
import java.util.*;
|
|
|
|
class C {
|
|
static final List EMPTY = new ArrayList(0);
|
|
|
|
void m() {
|
|
List<String> list = C.<error descr="Reference parameters are not allowed here"><String></error>EMPTY;
|
|
System.out.println(list);
|
|
}
|
|
} |