blob: af8ef8c00dde11c2f48339388aea77f4ebc11d7b [file]
// WITH_STDLIB
import kotlin.test.*
fun box(): String {
foo(0)
return "OK"
}
fun foo(x: Int) {
when (x) {
0 -> 0
}
}