Files
kotlin/compiler/testData/codegen/box/controlStructures/forNullableCharInString.kt

12 lines
194 B
Kotlin
Vendored

// 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"
}