41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
12 lines
168 B
Kotlin
12 lines
168 B
Kotlin
fun foo(): String {
|
|
return if (true) {
|
|
var x = "OK"
|
|
fun foo() { x += "fail" }
|
|
x
|
|
} else "fail"
|
|
}
|
|
|
|
fun box(): String {
|
|
return foo()
|
|
}
|