Files
kotlin-fork/backend.native/tests/external/codegen/box/enum/emptyConstructor.kt
T
2017-03-13 15:31:46 +03:00

9 lines
112 B
Kotlin

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