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

16 lines
243 B
Kotlin
Vendored

fun foo() {
if (0 < 1) {
System.out?.println()
} else {
System.out?.println()
}
val b = if (1 < 2) {
System.out?.println()
} else {
System.out?.println()
}
}
// 2 3 5 6 8 9 11 8 13