Files
kotlin/compiler/testData/codegen/box/controlStructures/kt3574.kt
2016-11-09 21:41:12 +03:00

13 lines
232 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun nil() = null
fun list() = java.util.Arrays.asList("1")
fun box(): String {
for (x in nil()?:list()) {
}
return "OK"
}