dbe0b4aa71
#KT-30612 Fixed
13 lines
191 B
Kotlin
Vendored
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
|
|
} |