Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/NonPrivateConstructor.fir.kt
T

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)
}