Files
kotlin/compiler/testData/codegen/bytecodeText/statements/tryCatchFinally.kt
2019-04-08 13:10:24 +02:00

27 lines
296 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
fun z() {}
fun foo() {
try {
z()
} catch (e: Exception) {
z()
}
try {
z()
} finally {
z()
}
try {
z()
} catch (e: Exception) {
z()
} finally {
z()
}
}
// 0 GETSTATIC