mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
11 lines
106 B
Kotlin
Vendored
11 lines
106 B
Kotlin
Vendored
enum class E {
|
|
ENTRY;
|
|
|
|
abstract class Nested
|
|
}
|
|
|
|
fun box(): String {
|
|
E.ENTRY
|
|
return "OK"
|
|
}
|