Files
kotlin/compiler/testData/codegen/box/enum/emptyConstructor.kt
2016-11-09 21:41:12 +03:00

12 lines
208 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
package test
enum class My(val s: String) {
ENTRY;
constructor(): this("OK")
}
fun box() = My.ENTRY.s