blob: 05870d9e954834ec26e087e6cb8b3aee5548bb66 [file]
// WITH_STDLIB
// FILE: lib.kt
val sb = StringBuilder()
inline fun bar() {
sb.append({ "OK" }())
}
// FILE: main.kt
import kotlin.test.*
class Foo {
init {
bar()
}
}
fun box(): String {
Foo()
return sb.toString()
}