6 lines
164 B
Kotlin
Vendored
6 lines
164 B
Kotlin
Vendored
enum class A {
|
|
A(1), B(2), C("test");
|
|
|
|
constructor(x: Int) : <!DELEGATION_SUPER_CALL_IN_ENUM_CONSTRUCTOR!>super<!>()
|
|
constructor(t: String) : this(10)
|
|
} |