mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 06:39:38 +07:00
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:
committed by
intellij-monorepo-bot
parent
8784ff6774
commit
b584986070
@@ -0,0 +1,10 @@
|
||||
// "Generate overloaded constructor with default parameter values" "true"
|
||||
record Test(int x) {
|
||||
public Test() {
|
||||
this();
|
||||
}
|
||||
|
||||
public Test {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Generate overloaded constructor with default parameter values" "true"
|
||||
record Test(int x) {
|
||||
pu<caret>blic Test {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user