Files
kotlin-fork/compiler/testData/loadKotlin/enum/innerEnumExistingClassObject.kt
T
Alexander Udalov 42839fa061 Delete LoadKotlinCustomTest
It's useless now because enums are loaded the same way from binaries as well as
from sources
2013-12-02 19:56:08 +04:00

9 lines
86 B
Kotlin

package test
class A {
class object { }
enum class E {
ENTRY
}
}