Files
kotlin-fork/idea/testData/inspectionsLocal/unusedSymbol/enumSecondaryConstructor.kt
T
2019-03-27 11:46:31 +07:00

12 lines
165 B
Kotlin
Vendored

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