mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
10 lines
262 B
Kotlin
Vendored
10 lines
262 B
Kotlin
Vendored
// KT-8438 org.jetbrains.org.objectweb.asm.tree.analysis.AnalyzerException: Error at instruction 4: Cannot pop operand off an empty stack
|
|
|
|
enum class E public constructor(x: String = "OK") {
|
|
ENTRY();
|
|
|
|
val result = x
|
|
}
|
|
|
|
fun box(): String = E.ENTRY.result
|