mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
12 lines
208 B
Kotlin
Vendored
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
|