Files
kotlin/compiler/testData/codegen/box/enum/emptyConstructor.kt
2019-11-19 11:00:09 +03:00

10 lines
142 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
package test
enum class My(val s: String) {
ENTRY;
constructor(): this("OK")
}
fun box() = My.ENTRY.s