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

16 lines
231 B
Kotlin
Vendored

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