Files
kotlin/compiler/testData/codegen/bytecodeText/statements/tryCatchFinally.kt
2018-12-21 16:20:45 +01: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