blob: 171abc77be11d79b290d596a3da34767ea3260ab [file]
// WITH_STDLIB
import kotlin.test.*
val sb = StringBuilder()
fun box(): String {
run {
sb.append("OK")
}
return sb.toString()
}
fun run(f: () -> Unit) {
f()
}