16 lines
255 B
Plaintext
Vendored
16 lines
255 B
Plaintext
Vendored
// "Change to short enum entry super constructor in the whole project" "true"
|
|
|
|
enum class MyEnum(val i: Int) {
|
|
/**
|
|
* The first
|
|
*/
|
|
FIRST(1),
|
|
/**
|
|
* The second
|
|
*/
|
|
SECOND(2),
|
|
/**
|
|
* The third
|
|
*/
|
|
THIRD(3)
|
|
} |