mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
10 lines
205 B
Kotlin
Vendored
10 lines
205 B
Kotlin
Vendored
enum class E {
|
|
ENTRY;
|
|
|
|
private companion object
|
|
}
|
|
|
|
fun foo() = E.values()
|
|
fun bar() = E.valueOf("ENTRY")
|
|
fun baz() = E.ENTRY
|
|
fun <!EXPOSED_FUNCTION_RETURN_TYPE!>quux<!>() = <!INVISIBLE_MEMBER!>E<!> |