Files
kotlin-fork/compiler/testData/ir/irText/singletons/enumEntry.kt
T

11 lines
154 B
Kotlin
Vendored

enum class Z {
ENTRY {
fun test() {}
inner class A {
fun test2() {
test()
}
}
}
}