9cb19d17b0
Package classes in line number tests only contain "1" as the first line number of a single function, so there's no point in testing it. The test was failing due to the latest changes in the order of generation of classfiles (first $src, then facade)
16 lines
238 B
Kotlin
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
|