blob: 168e4e71811549b9d548cc5081f42687f3de1c02 [file] [log] [blame]
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);
}
}