Files
kotlin-fork/compiler/testData/codegen/box/when/kt45081.kt
T
2021-12-07 21:33:28 +03:00

11 lines
191 B
Kotlin
Vendored

// WITH_STDLIB
fun test(text: String): String {
when (text.takeWhile { it.isLetter() }) {
in arrayOf("a") -> return "OK"
}
return "FAIL"
}
fun box(): String = test("a")