8 lines
75 B
Kotlin
Vendored
8 lines
75 B
Kotlin
Vendored
external enum class E {
|
|
X,
|
|
Y {
|
|
fun foo()
|
|
},
|
|
Z {}
|
|
}
|