blob: 3803e5240f267d6edc9c4dde01531f8e9c600b80 [file]
fun box(): String {
val s = "b"
return if ("a" == s) {
"FAIL1"
} else if ("b" == s) {
"OK"
} else if ("c" == s) {
"FAIL2"
} else {
"FAIL3"
}
}