Files
kotlin-fork/j2k/tests/testData/ast/tryStatement/emptyTryWithTwoCatchesWithoutFinally.ide.kt
T
Pavel V. Talanov 7f88de1dba Converter tests:
White spaces in member lists are preserved
2013-12-22 16:49:47 +04:00

8 lines
82 B
Kotlin

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