Files
kotlin-fork/compiler/testData/codegen/box/intrinsics/trimMarginWithBlankString.kt
T
2021-09-08 19:56:38 +03:00

15 lines
267 B
Kotlin
Vendored

// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND: WASM
// WASM_MUTE_REASON: STDLIB_TEXT
fun box(): String {
try {
"a b c".trimMargin(" ")
return "Fail trimMargin"
} catch (e: IllegalArgumentException) {
return "OK"
}
}