mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
least upper bound for primitive arrays fixed (IDEA-111420)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.List;
|
||||
|
||||
public class Test {
|
||||
private static final List<Class<?>> PRIMITIVE_ARRAY_TYPES = asList(byte[].class, int[].class);
|
||||
private static final List<?> PRIMITIVE_ARRAY_TYPES1 = asList(byte[].class, int[].class);
|
||||
|
||||
public static <T> List<T> asList(T... a) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user