blob: 8a77af1ec9edc18c9f160569763c8d7e9f632e23 [file]
// WITH_STDLIB
fun box(): String {
return when(val foo = 42UL) {
42UL -> "OK"
else -> "Fail"
}
}