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

11 lines
126 B
Kotlin
Vendored

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