no need to check unrelated concrete for same named constructors in the hierarchy (IDEA-154377)

This commit is contained in:
Anna.Kozlova
2016-04-08 16:37:47 +02:00
parent 572b7d8e7e
commit a8ad27f8a9
5 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import java.util.List;
public class A<T> extends p.A {
public A(List<T> l) {
super(l);
}
}

View File

@@ -0,0 +1,6 @@
import java.util.List;
public class B extends A<Integer> {
public B(List<Integer> a) {
super(a);
}
}

View File

@@ -0,0 +1,7 @@
package p;
import java.util.List;
public class A {
public A(List l) {
}
}