Redundant semicolon: fix false negative on start of line
^KT-40704 Fixed
This commit is contained in:
committed by
Vladimir Dolzhenko
parent
02c31a711c
commit
33969c5f9a
@@ -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() {}
|
||||
Reference in New Issue
Block a user