Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/simple.kt
T
2020-11-09 16:04:43 +03:00

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()}"