Files
kotlin-fork/compiler/testData/lineNumber/custom/tryCatchExpression.kt
T
2012-11-22 22:32:14 +04:00

16 lines
226 B
Kotlin

fun foo() {
try {
System.out?.println()
} catch (e: Throwable) {
return
}
val t = try {
System.out?.println()
} catch (e: Throwable) {
return
}
}
// 2 3 5 8 9 11 8