Files
kotlin-fork/compiler/testData/debug/stepping/IfTrueThenFalse.kt
T

17 lines
186 B
Kotlin
Vendored

//FILE: test.kt
fun cond() = false
fun box() {
if (cond())
cond()
else
false
}
// LINENUMBERS
// test.kt:5
// test.kt:2
// test.kt:5
// test.kt:8
// test.kt:9