mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
inline super: don't warn for unresolved constructor with new array (IDEA-152583)
This commit is contained in:
+3
@@ -1,4 +1,7 @@
|
||||
class Test {
|
||||
public Test() {
|
||||
}
|
||||
|
||||
public static Test[] getArray() {
|
||||
return new Test[0];
|
||||
}
|
||||
|
||||
+3
@@ -1,4 +1,7 @@
|
||||
class Super {
|
||||
public Super(String s) {
|
||||
}
|
||||
|
||||
public static Super[] getArray() {
|
||||
return new Super[0];
|
||||
}
|
||||
|
||||
+5
-1
@@ -1 +1,5 @@
|
||||
class Test extends Super {}
|
||||
class Test extends Super {
|
||||
public Test() {
|
||||
super("");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user