Redundant semicolon: fix false negative on start of line

^KT-40704 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-08-04 08:37:32 +02:00
committed by Vladimir Dolzhenko
parent 02c31a711c
commit 33969c5f9a
6 changed files with 37 additions and 0 deletions
@@ -0,0 +1,6 @@
fun test() {
foo()
<caret>;foo()
}
fun foo() {}
@@ -0,0 +1,6 @@
fun test() {
foo()
foo()
}
fun foo() {}
@@ -0,0 +1,6 @@
fun test() {
foo()
/* comment */<caret>;foo()
}
fun foo() {}
@@ -0,0 +1,6 @@
fun test() {
foo()
/* comment */foo()
}
fun foo() {}