Files
kotlin/compiler/testData/codegen/box/enum/abstractNestedClass.kt
Alexander Udalov f7235e9d82 Fix abstract nested class in enums in JVM back-end
It caused InstantiationError because the enum had an incorrect ACC_ABSTRACT
flag
2014-04-24 16:10:13 +04:00

11 lines
105 B
Kotlin

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