disable constructor matching super when appropriate candidate already present

IDEA-113427
This commit is contained in:
Anna Kozlova
2018-06-26 09:18:42 +03:00
parent 4f73487a62
commit 002134fe5b
2 changed files with 26 additions and 2 deletions
@@ -0,0 +1,9 @@
// "Create constructor matching super" "false"
class A {
public A(int i) {
}
}
class B extends A {
public B<caret>(int i) {
}
}