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