Files
kotlin-fork/compiler/testData/lineNumber/custom/tryCatchExpression.kt
T
2016-04-15 15:58:07 +03:00

15 lines
235 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 4 5 6 8 9 10 11 8 13