11 lines
119 B
Kotlin
Vendored
11 lines
119 B
Kotlin
Vendored
package aaa
|
|
|
|
enum class E {
|
|
TRIVIAL_ENTRY
|
|
SUBCLASS { }
|
|
|
|
class Nested {
|
|
fun fortyTwo() = 42
|
|
}
|
|
}
|