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