16 lines
152 B
Kotlin
16 lines
152 B
Kotlin
enum class A {
|
|
constructor(x: Int) {}
|
|
|
|
abc1 : A(1,2,3)
|
|
abc2 : A(1,2,3) {}
|
|
|
|
init {}
|
|
|
|
abc3
|
|
|
|
constructor(x: Int): this() {}
|
|
{
|
|
|
|
}
|
|
}
|