Files
kotlin/compiler/testData/codegen/box/enum/emptyConstructor.kt
2018-06-09 19:15:38 +03:00

10 lines
137 B
Kotlin
Vendored

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