Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/conditionOfEmptyIf.kt
T
2017-03-13 15:31:46 +03:00

14 lines
159 B
Kotlin

var result = "Fail"
fun setOK(): Boolean {
result = "OK"
return true
}
fun box(): String {
if (setOK()) {
} else {
}
return result
}