8 lines
145 B
Kotlin
Vendored
8 lines
145 B
Kotlin
Vendored
enum class E public constructor(val x: Int) {
|
|
FIRST();
|
|
|
|
internal constructor(): this(42)
|
|
|
|
constructor(y: Int, z: Int): this(y + z)
|
|
}
|