Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/entries/genericEntriesPropertyClash.fir.kt
T
2023-01-04 13:17:10 +00:00

17 lines
175 B
Kotlin
Vendored

// !LANGUAGE: -EnumEntries
package pckg
enum class A {
;
companion object
}
val <T> T.entries: Int get() = 0
fun test() {
A.entries
A.Companion.entries
}