Files
kotlin/compiler/testData/codegen/box/enum/abstractNestedClass.kt
Mikhail Glukhikh cf741cb868 Enum parsing changed: first entries, then members. Grammar fixed accordingly.
A set of compiler tests and some plugin tests changed accordingly.
Compiler Kotlin code changed accordingly.
2015-05-15 16:13:27 +03:00

11 lines
105 B
Kotlin

enum class E {
ENTRY
abstract class Nested
}
fun box(): String {
E.ENTRY
return "OK"
}