mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
spec: no capture conversion applicable for array type; capture conversion must be applied for array access expression type; javac: no capture conversion is applicable for array access expressions with write access (IDEA-157295)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import java.util.*;
|
||||
|
||||
class Test {
|
||||
private void foo() {
|
||||
List<Class<?>> parameterTypes = Arrays.asList(getParameterTypes());
|
||||
}
|
||||
|
||||
private Class<?>[] getParameterTypes() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user