Files
kotlin-fork/compiler/testData/lineNumber/custom/ifThenElse.kt
T
Alexander Udalov 99a908e8fe If-then-else statements & correct line numbers
#KT-3036 Fixed
2012-11-22 22:31:58 +04:00

16 lines
238 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()
}
}
// 2 3 5 8 9 11 8