2987e72d29
Previously we prohibited classes and properties with the same name (now it's unnecessary) Add test for backends that they support qualified (by default object name) member references inside class body
11 lines
113 B
Kotlin
11 lines
113 B
Kotlin
enum class E {
|
|
FIRST
|
|
|
|
SECOND
|
|
|
|
default object {
|
|
class FIRST
|
|
|
|
val SECOND = this
|
|
}
|
|
} |