[java-intentions] Insert semicolon fix (IDEA-216117)

GitOrigin-RevId: b67112e8526f26c53fb0450d6e040b795ddab314
This commit is contained in:
Tagir Valeev
2021-03-04 10:48:55 +07:00
committed by intellij-monorepo-bot
parent a0b14b0e24
commit 5e8dce784b
8 changed files with 160 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
// "Insert ;" "true"
class X {
void test() {
System.out.println("Hello")<caret>
}
}