41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
11 lines
200 B
Kotlin
11 lines
200 B
Kotlin
fun aa(vararg a : String): String = a[0]
|
|
|
|
fun box(): String {
|
|
var result: String = ""
|
|
var i = 1
|
|
while (3 > i++) {
|
|
result = aa(if (true) "OK" else "fail")
|
|
}
|
|
return result
|
|
}
|