Handle compact constructor in regular class: quick-fix to add () (IDEA-228460)

GitOrigin-RevId: c019e19e8023c0209f6e5ed54f8a486689bb0e0a
This commit is contained in:
Tagir Valeev
2019-12-18 11:37:51 +00:00
committed by intellij-monorepo-bot
parent e29a0e3102
commit 662cb5deae
11 changed files with 123 additions and 8 deletions
@@ -0,0 +1,5 @@
class NotRecord {
public <error descr="Parameter list expected">NotRecord</error> {
}
}
@@ -0,0 +1,6 @@
// "Insert '()'" "true"
class NotRecord {
public NotRecord() {
}
}
@@ -0,0 +1,6 @@
// "Insert '()'" "true"
class NotRecord {
public <caret>NotRecord {
}
}