blob: 4ac41afa796c60c60958be7ff9e2caea846cb30d [file]
// WITH_STDLIB
import kotlin.test.*
val sb = StringBuilder()
fun box(): String {
foo {
sb.append(it)
}
assertEquals("42", sb.toString())
return "OK"
}
fun foo(f: (Int) -> Unit) {
f(42)
}