diff --git a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/components/KotlinCallCompleter.kt b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/components/KotlinCallCompleter.kt index 7f7764394aa..492365e6146 100644 --- a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/components/KotlinCallCompleter.kt +++ b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/components/KotlinCallCompleter.kt @@ -181,8 +181,6 @@ class KotlinCallCompleter( // true if it is the end (happy or not) // every step we fix type variable or analyzeLambda private fun SimpleKotlinResolutionCandidate.oneStepToEndOrLambda(c: Context, resolutionCallbacks: KotlinResolutionCallbacks): Boolean { - if (c.hasContradiction) return true - val lambda = c.lambdaArguments.find { canWeAnalyzeIt(c, it) } if (lambda != null) { analyzeLambda(c, resolutionCallbacks, lambda)