Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/NonPrivateConstructor.fir.kt
T
2020-03-27 16:46:59 +03:00

8 lines
221 B
Kotlin
Vendored

enum class E <!NON_PRIVATE_CONSTRUCTOR_IN_ENUM!>public constructor(val x: Int)<!> {
FIRST();
<!NON_PRIVATE_CONSTRUCTOR_IN_ENUM!>internal constructor(): this(42)<!>
constructor(y: Int, z: Int): this(y + z)
}