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

13 lines
243 B
Kotlin

package codegen.function.defaults1
import kotlin.test.*
fun foo(x:Int = 0, y:Int = x + 1, z:Int = x + y + 1) = x + y + z
@Test fun runTest() {
val v = foo()
if (v != 3) {
println("test failed $v expected 3")
throw Error()
}
}