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

12 lines
180 B
Kotlin
Vendored

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