Files
kotlin-fork/nj2k/testData/newJ2k/tryStatement/emptyTryWithTwoCatchesWithoutFinally.kt
T
2019-04-03 11:24:19 +03:00

6 lines
89 B
Kotlin
Vendored

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