Files
kotlin-fork/j2k/tests/testData/ast/tryStatement/statement/emptyTryWithTwoCatchesWithEmptyFinally.kt
T
2012-01-27 18:33:52 +04:00

12 lines
97 B
Kotlin

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