Files
kotlin-fork/idea/testData/inspectionsLocal/redundantSemicolon/ifElse.kt
T
2018-08-27 12:53:35 +03:00

7 lines
110 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test() {
if (true) println("hello") else<caret>;
println("hi")
}