mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
no need to check unrelated concrete for same named constructors in the hierarchy (IDEA-154377)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import java.util.List;
|
||||
public class A<T> extends p.A {
|
||||
public A(List<T> l) {
|
||||
super(l);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import java.util.List;
|
||||
public class B extends A<Integer> {
|
||||
public B(List<Integer> a) {
|
||||
super(a);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package p;
|
||||
import java.util.List;
|
||||
|
||||
public class A {
|
||||
public A(List l) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user