9 lines
151 B
Kotlin
9 lines
151 B
Kotlin
package codegen.function.sum_func
|
|
|
|
import kotlin.test.*
|
|
|
|
fun foo():Int = 1
|
|
//fun bar():Int = 2
|
|
//fun sum():Int = foo() + bar()
|
|
|
|
// FIXME: has no checks |