diff --git a/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/lower/PropertyLazyInitLowering.kt b/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/lower/PropertyLazyInitLowering.kt index f10ea002c18..1f3ea750419 100644 --- a/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/lower/PropertyLazyInitLowering.kt +++ b/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/lower/PropertyLazyInitLowering.kt @@ -125,7 +125,6 @@ private fun calculateFieldToExpression(functions: Collection): .filter { it.isTopLevel } .filterNot { it.isConst } .distinct() - .filterNot { it.isDelegated } .mapNotNull { it.backingField } .filter { it.initializer != null } .map { it to it.initializer!!.expression }