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

10 lines
238 B
Kotlin
Vendored

// "Change to short enum entry super constructor in the whole project" "true"
enum class MyEnum(val i: Int) {
// The first
FIRST: MyEnum(1)<caret>,
// The second
SECOND: MyEnum(2),
// The third
THIRD: MyEnum(3)
}