// IGNORE_BACKEND_FIR: JVM_IR enum class A(val b: String) { E1("OK"){ override fun t() = b }; abstract fun t(): String } fun box()= A.E1.t()