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

13 lines
153 B
Kotlin
Vendored

// FIR_IDENTICAL
enum class E : T {
ENTRY {
override fun f() {
}
};
abstract override fun f()
}
interface T {
fun f()
}