blob: 9ab1c3fef6357bfe10e92b342d4fbd57848c401b [file]
fun box(): String {
val x = 1
when (x) {
1 -> return "OK"
}
return "Fail 1"
}