Files
kotlin-fork/idea/testData/quickfix/migration/enumConstructor/withCommas.kt
T

9 lines
191 B
Kotlin
Vendored

// "Change to short enum entry super constructor" "true"
enum class SimpleEnum(val z: String = "xxx") {
FIRST(),
SECOND: SimpleEnum("42")<caret>,
LAST("13");
fun foo() = z
}