3ff2c7d6f7
Related to KT-56623, KT-56587 #KT-59344 Fixed
22 lines
288 B
Kotlin
Vendored
22 lines
288 B
Kotlin
Vendored
// !LANGUAGE: -EnumEntries
|
|
// WITH_STDLIB
|
|
|
|
enum class A {
|
|
;
|
|
|
|
companion object {
|
|
@JvmStatic
|
|
val entries = 0
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
<!DEPRECATED_ACCESS_TO_ENUM_ENTRY_COMPANION_PROPERTY!>A.entries<!>
|
|
|
|
with(A) {
|
|
entries
|
|
}
|
|
|
|
A.Companion.entries
|
|
}
|