mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
27 lines
296 B
Kotlin
Vendored
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
|