Files
kotlin-fork/testData/ast/tryStatement/statement/emptyTryWithTwoCatchesWithFinally.kt
T
Sergey Ignatov 992675a1bc *_mult avoided
2011-11-07 13:36:13 +04:00

13 lines
108 B
Kotlin

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