mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
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<!>
|