Files
kotlin/compiler/testData/diagnostics/tests/enum/emptyConstructor.kt

5 lines
72 B
Kotlin
Vendored

enum class E {
A; // no constructor call needed
constructor()
}