Files
kotlin-fork/nj2k/testData/newJ2k/tryStatement/emptyTryWithTwoCatchesWithEmptyFinally.kt
T
2019-04-03 11:24:19 +03:00

7 lines
101 B
Kotlin
Vendored

try {
} catch (e: Exception) {
println(1)
} catch (e: IOException) {
println(0)
} finally {
}