Files
kotlin-fork/plugins/jvm-abi-gen/testData/content/whenMapping/test.kt
T

11 lines
154 B
Kotlin
Vendored

package test
enum class E { A, B }
class Test {
inline fun visibleWhenMapping(e: E) = when (e) {
E.A -> "OK"
else -> "Fail"
}
}