From b148df15a94f33b2605057060daa1f8564263783 Mon Sep 17 00:00:00 2001 From: "Denis.Zharkov" Date: Fri, 24 Mar 2023 14:51:38 +0100 Subject: [PATCH] Fix project compilation Compilation was broken becaise of the combination of 706ff6b61f6d2289f507b150f9239795974eb4c0 and 9c2c11f7e9cafd5ba850574425a77daf874b66e5 --- .../kotlin/fir/backend/generators/CallAndReferenceGenerator.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/fir/fir2ir/src/org/jetbrains/kotlin/fir/backend/generators/CallAndReferenceGenerator.kt b/compiler/fir/fir2ir/src/org/jetbrains/kotlin/fir/backend/generators/CallAndReferenceGenerator.kt index f018144c21b..7e2a459c7df 100644 --- a/compiler/fir/fir2ir/src/org/jetbrains/kotlin/fir/backend/generators/CallAndReferenceGenerator.kt +++ b/compiler/fir/fir2ir/src/org/jetbrains/kotlin/fir/backend/generators/CallAndReferenceGenerator.kt @@ -693,7 +693,7 @@ class CallAndReferenceGenerator( val symbol = annotationTypeRef.coneType.fullyExpandedType(session).toSymbol(session) as? FirRegularClassSymbol ?: return null val constructorSymbol = - symbol.unsubstitutedScope(session, scopeSession, withForcedTypeCalculator = false) + symbol.unsubstitutedScope(session, scopeSession, withForcedTypeCalculator = false, memberRequiredPhase = null) .getDeclaredConstructors().firstOrNull() ?: return null val argumentToParameterToMapping = constructorSymbol.valueParameterSymbols.mapNotNull {