Files
kotlin-fork/compiler/testData/ir/irText/singletons/enumEntry.kt
T
2016-10-18 09:10:19 +03:00

11 lines
148 B
Kotlin
Vendored

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