blob: 2d6768af748f6c4c0fe70c44470d4cfd4c603cee [file]
fun foo() {}
fun box(): String {
when ("A") {
"B" -> foo()
else -> null
}
foo()
return "OK"
}