mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
250 B
Kotlin
Vendored
14 lines
250 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
enum class Enum {
|
|
ENUM_VALUE {
|
|
override fun test() = ENUM_VALUE
|
|
};
|
|
|
|
abstract fun test(): Enum
|
|
}
|
|
|
|
fun box(): String {
|
|
if (Enum.ENUM_VALUE.test() != Enum.ENUM_VALUE) return "fail"
|
|
return "OK"
|
|
}
|