9 lines
111 B
Kotlin
9 lines
111 B
Kotlin
enum class MyEnum {
|
|
FIRST
|
|
SECOND
|
|
}
|
|
|
|
fun foo() {
|
|
val a = MyEnum.FIRST
|
|
<selection>a</selection>
|
|
} |