Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/kt34268.kt
T

9 lines
123 B
Kotlin
Vendored

// WITH_RUNTIME
fun box(): String {
return when(val foo = 42UL) {
42UL -> "OK"
else -> "Fail"
}
}