7 lines
134 B
Kotlin
Vendored
7 lines
134 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
enum class E {
|
|
A;
|
|
|
|
fun values(): Array<E> = null!!
|
|
fun valueOf(s: String): E = null!!
|
|
} |