blob: e6f2679a03190451b78bb661665284421485ce8c [file]
// WITH_STDLIB
import kotlin.test.*
fun box(): String {
when (true) {
true -> return "OK"
false -> return "FAIL"
}
}