mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
20 lines
347 B
Kotlin
Vendored
20 lines
347 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
package test
|
|
|
|
enum class State {
|
|
O,
|
|
K
|
|
}
|
|
|
|
fun box(): String {
|
|
val field = State::class.java.getField("O")
|
|
val className = field.get(null).javaClass.name
|
|
if (className != "test.State") return "Fail: $className"
|
|
|
|
return "${State.O.name}${State.K.name}"
|
|
}
|