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

10 lines
108 B
Kotlin

enum class E {
ENTRY
companion object {
fun entry() = ENTRY
}
}
fun bar() = E.entry()