blob: 304e7b49553abf96df9f962012087186b8820d65 [file]
private fun foo(): String = "b"
fun box(): String =
when {
"a" == foo() -> "FAIL1"
"b" == foo() -> "OK"
else -> "FAIL3"
}