blob: b8274e666933413bb5afb8ab76d3d3fc44ba516b [file]
// KJS_WITH_FULL_RUNTIME
fun StringBuilder.first() = this.get(0)
fun foo() = StringBuilder("foo").first()
fun box() = if (foo() == 'f') "OK" else "Fail ${foo()}"