Files
kotlin-fork/compiler/testData/codegen/controlStructures/conditionOfEmptyIf.kt
T
2012-11-22 22:31:53 +04:00

14 lines
159 B
Kotlin

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