7958a9debd
^KT-56927 Fxied
9 lines
112 B
Kotlin
Vendored
9 lines
112 B
Kotlin
Vendored
package test
|
|
|
|
enum class My(val s: String) {
|
|
ENTRY;
|
|
constructor(): this("OK")
|
|
}
|
|
|
|
fun box() = My.ENTRY.s
|