Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt5786_privateWithDefault.kt
T
2015-04-23 22:09:02 +03:00

13 lines
190 B
Kotlin
Vendored

fun box(): String {
run {
test("ok")
test("ok", 200)
}
test("ok")
test("ok", 300)
return "OK"
}
private fun test(arg1: String, default: Int = 0) = Unit