Files
kotlin-fork/j2k/tests/testData/ast/tryStatement/emptyTryWithTwoCatchesWithFinally.kt
T

8 lines
116 B
Kotlin

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