Files
kotlin-fork/compiler/testData/codegen/regressions/kt2271.kt
T
2012-08-06 08:28:38 +03:00

3 lines
78 B
Kotlin

fun foo(i: Int, j: Int = i) = j
fun box() = if (foo(1) == 1) "OK" else "fail"