Files
kotlin-fork/compiler/testData/codegen/box/ranges/contains/inCharSequence.kt
T
2021-10-02 06:14:35 +00:00

12 lines
236 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// WASM_MUTE_REASON: STDLIB_TEXT
// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
val charSeq: String = "123"
fun box(): String = when {
'0' in charSeq -> "fail 1"
'1' !in charSeq -> "fail 2"
else -> "OK"
}