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