59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
11 lines
168 B
Kotlin
11 lines
168 B
Kotlin
enum class E {
|
|
ENTRY
|
|
|
|
private default object
|
|
}
|
|
|
|
fun foo() = E.values()
|
|
fun bar() = E.valueOf("ENTRY")
|
|
fun baz() = E.ENTRY
|
|
fun quux() = <!INVISIBLE_MEMBER!>E<!>
|