Files
2018-06-21 13:27:17 +03:00

4 lines
79 B
Kotlin
Vendored

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