Files
kotlin-fork/idea/testData/quickfix/redundantSemicolon/afterStatement.kt
T
Valentin Kipyatkov 306edef23c Highlighting of redundant semicolons
#KT-5010 Fixed
2016-04-29 11:23:22 +03:00

8 lines
97 B
Kotlin
Vendored

// "Remove redundant semicolon" "true"
fun foo() {
a();<caret>
b()
}
fun a(){}
fun b(){}