blob: 34ce0e7de748b23d7c4be2ce6d891dbe76b46e9b [file]
fun box(): String {
val s: Any = "b"
return if (s == "a") {
"FAIL1"
} else if (s == "b") {
"OK"
} else if (s == 1) {
"FAIL2"
} else {
"FAIL3"
}
}