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

13 lines
191 B
Kotlin
Vendored

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