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

11 lines
156 B
Plaintext
Vendored

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