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

20 lines
363 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()
}
}
// 1 2 3 7 5 7 10 11 15 13 15 10