Files
kotlin-fork/j2k/tests/testData/ast/tryStatement/statement/emptyTryWithTwoCatchesWithEmptyFinally.kt
T
2013-10-29 21:03:29 +04:00

12 lines
95 B
Kotlin

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