Files
kotlin/compiler/testData/codegen/box/controlStructures/forNullableCharInString.kt
2019-11-19 11:00:09 +03:00

14 lines
249 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
fun box(): String {
val str = "abcd"
var r = ""
for (c: Char? in str) {
r = r + c ?: "?"
}
if (r != "abcd") throw AssertionError()
return "OK"
}