Files
kotlin/compiler/testData/codegen/box/enum/emptyConstructor.kt

9 lines
112 B
Kotlin
Vendored

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