Files
kotlin-fork/compiler/testData/lineNumber/custom/ifThenElse.kt
T
2013-03-06 16:22:33 +04:00

16 lines
240 B
Kotlin

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