mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
15 lines
145 B
Kotlin
Vendored
15 lines
145 B
Kotlin
Vendored
enum class B {}
|
|
|
|
class A {
|
|
enum companion object {}
|
|
}
|
|
|
|
enum object O {}
|
|
|
|
enum interface T {}
|
|
|
|
enum fun f() = 0
|
|
|
|
enum val x = 0
|
|
|
|
enum var y = 0 |