IDEA-230561 NPE when invoke 'Generate overloaded method with default parameter values' on record with duplicated constructors

GitOrigin-RevId: 69a003e043aaca55f933f17c9cf104cc678ed62c
This commit is contained in:
Tagir Valeev
2020-01-20 14:26:58 +07:00
committed by intellij-monorepo-bot
parent 8784ff6774
commit b584986070
5 changed files with 77 additions and 60 deletions

View File

@@ -0,0 +1,10 @@
// "Generate overloaded constructor with default parameter values" "true"
record Test(int x) {
public Test() {
this();
}
public Test {
}
}

View File

@@ -0,0 +1,6 @@
// "Generate overloaded constructor with default parameter values" "true"
record Test(int x) {
pu<caret>blic Test {
}
}