blob: 2c4e803b07b0baf47bc7b15679a5a62894c4d9b3 [file]
fun box(): String {
val x = 3
when (x) {
1 -> {}
2 -> {}
}
return "OK"
}