Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/NonPrivateConstructor.kt
T
2016-05-23 13:08:57 +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)
}