Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/enumEntryInAbstractEnum.fir.kt
T

13 lines
238 B
Kotlin
Vendored

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