Files
kotlin/compiler/testData/codegen/bytecodeText/lineNumbers/tryCatch.kt
2014-11-05 18:25:36 +03:00

8 lines
135 B
Kotlin
Vendored

fun foo() {
try {
System.out?.println()
} catch(e: Exception) {
System.out?.println()
}
}
// 1 LINENUMBER 2