Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/ifIncompatibleBranches.kt
T

11 lines
160 B
Kotlin
Vendored

fun box(): String {
var s = "2"
var res = "Fail"
if (s == "1") {
false
} else if (s == "2") {
res = "OK"
}
return res
}