mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
9 lines
99 B
Kotlin
9 lines
99 B
Kotlin
class A {
|
|
class object {}
|
|
enum class E {
|
|
OK
|
|
}
|
|
}
|
|
|
|
fun box() = A.E.OK.toString()
|