Files
kotlin-fork/compiler/testData/codegen/box/enum/emptyConstructor.kt
T
2022-11-12 16:28:25 +01:00

10 lines
140 B
Kotlin
Vendored

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