mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
9 lines
116 B
Kotlin
9 lines
116 B
Kotlin
class Outer {
|
|
enum class Nested {
|
|
O
|
|
K
|
|
}
|
|
}
|
|
|
|
fun box() = "${Outer.Nested.O}${Outer.Nested.K}"
|