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)
20 lines
361 B
Kotlin
20 lines
361 B
Kotlin
fun foo() {
|
|
try {
|
|
System.out?.println()
|
|
} catch (e: Throwable) {
|
|
System.out?.println()
|
|
} finally {
|
|
System.out?.println()
|
|
}
|
|
|
|
val t = try {
|
|
System.out?.println()
|
|
} catch (e: Throwable) {
|
|
System.out?.println()
|
|
} finally {
|
|
System.out?.println()
|
|
}
|
|
}
|
|
|
|
// 2 3 7 5 7 10 11 15 13 15 10
|