14 lines
160 B
Kotlin
Vendored
14 lines
160 B
Kotlin
Vendored
enum class SomeEnum {
|
|
A {
|
|
init {
|
|
fun foo() {}
|
|
|
|
class Local {}
|
|
}
|
|
|
|
class Nested
|
|
|
|
fun foo() {}
|
|
}
|
|
}
|