9 lines
242 B
Kotlin
Vendored
9 lines
242 B
Kotlin
Vendored
// DONT_TARGET_EXACT_BACKEND: WASM
|
|
// WASM_MUTE_REASON: STDLIB_STRING_BUILDER
|
|
// KJS_WITH_FULL_RUNTIME
|
|
fun StringBuilder.first() = this.get(0)
|
|
|
|
fun foo() = StringBuilder("foo").first()
|
|
|
|
fun box() = if (foo() == 'f') "OK" else "Fail ${foo()}"
|