8 lines
72 B
Kotlin
Vendored
8 lines
72 B
Kotlin
Vendored
enum class E {
|
|
E1,
|
|
E2 { };
|
|
}
|
|
|
|
fun foo() = E.E1
|
|
fun bar() = E.E2
|