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

20 lines
366 B
Kotlin
Vendored

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 8 10 11 15 13 15 10 17