mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
8 lines
127 B
Kotlin
Vendored
8 lines
127 B
Kotlin
Vendored
package test
|
|
|
|
public enum class X { A, B }
|
|
|
|
public inline fun switch(x: X): String = when (x) {
|
|
X.A -> "O"
|
|
X.B -> "K"
|
|
} |