7 lines
80 B
Kotlin
Vendored
7 lines
80 B
Kotlin
Vendored
internal enum class E {
|
|
FOO;
|
|
|
|
fun foo() {
|
|
FOO.toString()
|
|
}
|
|
} |