b52f337f7f
Place valueOf() and values() into the static scope of the corresponding enum class #KT-5580 Fixed #KT-2410 Fixed
6 lines
129 B
Kotlin
6 lines
129 B
Kotlin
import library.EnumClass
|
|
|
|
fun main(args: Array<String>) {
|
|
if (EnumClass.entry() != EnumClass.ENTRY) throw AssertionError()
|
|
}
|