diff --git a/compiler/ir/backend.jvm/src/org/jetbrains/kotlin/backend/jvm/lower/SyntheticAccessorLowering.kt b/compiler/ir/backend.jvm/src/org/jetbrains/kotlin/backend/jvm/lower/SyntheticAccessorLowering.kt index 5f962e44ef5..d3b36deabda 100644 --- a/compiler/ir/backend.jvm/src/org/jetbrains/kotlin/backend/jvm/lower/SyntheticAccessorLowering.kt +++ b/compiler/ir/backend.jvm/src/org/jetbrains/kotlin/backend/jvm/lower/SyntheticAccessorLowering.kt @@ -527,7 +527,7 @@ internal class SyntheticAccessorLowering(val context: JvmBackendContext) : IrEle // Access to static members that need an accessor must be because they are inherited, // hence accessed on a _s_upertype. - isStatic -> "\$s" + parentAsClass.descriptor.syntheticAccessorToSuperSuffix() + isStatic -> "\$s" + parentAsClass.syntheticAccessorToSuperSuffix() else -> "" }