13 lines
230 B
Kotlin
13 lines
230 B
Kotlin
enum class A {/* NonReanalyzableDeclarationStructureElement */
|
|
X {
|
|
fun localInX() = 1
|
|
},
|
|
Y {
|
|
override fun foo() {}
|
|
},
|
|
Z,
|
|
|
|
;
|
|
|
|
open fun foo() {/* ReanalyzableFunctionStructureElement */}
|
|
} |