-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
9
This program:
import java.util.List;
class Test {
public static void event(List<? super String>[] conditions) {
allOf(conditions);
}
public static <T> void allOf(List<? super T>[] conditions) {
}
}
Fails to compile; however, if array brackets are omitted from the source, it compiles w/o issues.
import java.util.List;
class Test {
public static void event(List<? super String>[] conditions) {
allOf(conditions);
}
public static <T> void allOf(List<? super T>[] conditions) {
}
}
Fails to compile; however, if array brackets are omitted from the source, it compiles w/o issues.