Files
kotlin-fork/idea/testData/quickfix/removeUnused/unusedEnumEntry.kt.after
T
2019-03-27 11:46:30 +07:00

12 lines
167 B
Plaintext
Vendored

// "Safe delete 'WORLD'" "true"
enum class MyEnum(val i: Int) {
HELLO(42),
E(24)
;
constructor(s: String): this(42)
}
fun test() {
MyEnum.HELLO
}