Files
kotlin-fork/backend.native/tests/codegen/function/sum_silly.kt
T
2017-10-20 18:25:05 +03:00

11 lines
144 B
Kotlin

package codegen.function.sum_silly
import kotlin.test.*
// FIXME: has no checks
fun sum(a:Int, b:Int):Int {
var c:Int
c = a + b
return c
}