diff --git a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/FirDelegatedPropertyInferenceSession.kt b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/FirDelegatedPropertyInferenceSession.kt index e01f57eb706..ce8f413e2d7 100644 --- a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/FirDelegatedPropertyInferenceSession.kt +++ b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/inference/FirDelegatedPropertyInferenceSession.kt @@ -80,6 +80,13 @@ class FirDelegatedPropertyInferenceSession( ) } } + + for ((_, candidate) in partiallyResolvedCalls) { + for (error in commonSystem.errors) { + candidate.system.addError(error) + } + } + resultingConstraintSystem = commonSystem return resolvedCalls }