13 lines
243 B
Kotlin
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()
|
|
}
|
|
} |