Files
kotlin/compiler/testData/codegen/bytecodeText/statements/tryCatchFinally.kt
Alexander Udalov 620143ae5b Add test on bytecode text
Test data should be a Kotlin source file with zero or more comments e.g. of
the form: '// 1 INVOKEVIRTUAL'. The test then checks that the generated
bytecode for this file contains exactly one occurrence of the string
'INVOKEVIRTUAL'
2013-02-11 02:01:43 +04:00

26 lines
270 B
Kotlin

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