diff --git a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt index 6795e36147d..a8714464ad0 100644 --- a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt +++ b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt @@ -162,8 +162,11 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re val fixedVariables = LinkedHashMap() for (variableWithConstrains in storage.notFixedTypeVariables.values) { - val resultType = resultTypeResolver.findResultIfThereIsEqualsConstraint(apply { checkState(State.BUILDING) }, variableWithConstrains, - allowedFixToNotProperType = false) + val resultType = resultTypeResolver.findResultIfThereIsEqualsConstraint( + apply { checkState(State.BUILDING) }, + variableWithConstrains, + allowedFixToNotProperType = false + ) if (resultType != null) { fixedVariables[variableWithConstrains.typeVariable] = resultType }