Files
kotlin/compiler/testData/diagnostics/tests/enum/enumEntryInAbstractEnum.kt

13 lines
222 B
Kotlin

enum class EnumClass {
E1 {
override fun foo() = 1
override val bar: String = "a"
}
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>E2<!> {
}
abstract fun foo(): Int
abstract val bar: String
}