11 lines
149 B
Kotlin
Vendored
11 lines
149 B
Kotlin
Vendored
package test
|
|
|
|
enum class E { A, B }
|
|
|
|
class Test {
|
|
fun anonymousWhenMapping(e: E) = when (e) {
|
|
E.A -> "OK"
|
|
else -> "Fail"
|
|
}
|
|
}
|