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

6 lines
89 B
Kotlin
Vendored

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