Files
kotlin-fork/compiler/testData/lineNumber/custom/ifThen.kt
T

12 lines
125 B
Kotlin

fun foo() {
if (0 < 1) {
return
}
val u: Unit = if (0 < 1) {
return
}
}
// 2 3 6 7 6 9