blob: 4270f85d841f2e6ba87efec1363e167ce7c72b25 [file] [log] [blame]
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
fun box(): String {
return when(val foo = 42UL) {
42UL -> "OK"
else -> "Fail"
}
}