mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
12 lines
166 B
Kotlin
Vendored
12 lines
166 B
Kotlin
Vendored
enum class E {
|
|
FIRST,
|
|
|
|
SECOND {
|
|
companion object {
|
|
fun foo() = 42
|
|
}
|
|
};
|
|
}
|
|
|
|
fun f() = E.SECOND.<!UNRESOLVED_REFERENCE!>foo<!>()
|