07c2442405
#KT-5786 Fixed
13 lines
190 B
Kotlin
Vendored
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
|