14 lines
195 B
Kotlin
Vendored
14 lines
195 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_IR
|
|
// IGNORE_BACKEND_K1: JVM_IR
|
|
|
|
// FILE: 1.kt
|
|
|
|
const val name = E.OK.name
|
|
fun box(): String = name
|
|
|
|
// FILE: 2.kt
|
|
|
|
enum class E(val parent: E?) {
|
|
X(null),
|
|
OK(X),
|
|
} |