diff --git a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/transformers/FirCallCompleterTransformer.kt b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/transformers/FirCallCompleterTransformer.kt index 54edfeab590..8bb76f67b4c 100644 --- a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/transformers/FirCallCompleterTransformer.kt +++ b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/transformers/FirCallCompleterTransformer.kt @@ -65,7 +65,7 @@ class FirCallCompleterTransformer( override fun transformFunctionCall(functionCall: FirFunctionCall, data: Nothing?): CompositeTransformResult { val calleeReference = functionCall.calleeReference as? FirNamedReferenceWithCandidate ?: return functionCall.compose() - val functionCall = functionCall.transformChildren(this, data) as FirFunctionCall + val functionCall = functionCall.transformArguments(this, data) as FirFunctionCall val subCandidate = calleeReference.candidate val declaration = subCandidate.symbol.firUnsafe()