16 lines
286 B
Kotlin
Vendored
16 lines
286 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),
|
|
/**
|
|
* The second
|
|
*/
|
|
SECOND: MyEnum(2)<caret>,
|
|
/**
|
|
* The third
|
|
*/
|
|
THIRD: MyEnum(3)
|
|
} |