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