Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/entries/entriesPropertyImportedClash.kt
T
2023-01-24 12:46:00 +00:00

23 lines
438 B
Kotlin
Vendored

// !LANGUAGE: -EnumEntries
// WITH_STDLIB
package foo
import foo.A.Companion.entries
enum class A {
;
companion object {
val entries = 0
}
}
fun test() {
A.<!DEBUG_INFO_CALL("fqName: foo.A.Companion.entries; typeCall: variable"), DEPRECATED_ACCESS_TO_ENUM_ENTRY_COMPANION_PROPERTY!>entries<!>
with(A) {
<!DEBUG_INFO_CALL("fqName: foo.A.Companion.entries; typeCall: variable")!>entries<!>
}
}