Files
kotlin-fork/plugins/jvm-abi-gen/testData/compare/functionBody/base/function.kt
T

10 lines
156 B
Kotlin
Vendored

package test
fun sum(x: Int, y: Int): Int =
try {
var result = x
result += y
result
} finally {
// do nothing
}