Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/StarImportEnum.A.kt
T
2015-08-10 16:24:12 +03:00

11 lines
121 B
Kotlin
Vendored

package aaa
enum class E {
TRIVIAL_ENTRY,
SUBCLASS { };
class Nested {
fun fortyTwo() = 42
}
}