diff --git a/compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt b/compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt index f6b2f03a083..7a78aa0710b 100644 --- a/compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt +++ b/compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt @@ -1098,7 +1098,7 @@ abstract class BaseFirBuilder(val baseSession: FirSession, val context: Conte returnTypeRef = propertyReturnTypeRef name = propertyName symbol = FirVariableSymbol(propertyName) - defaultValue = generateComponentAccess(parameterSource, firProperty, propertyReturnTypeRef, classTypeRef) + defaultValue = generateComponentAccess(parameterSource, firProperty, classTypeRef, propertyReturnTypeRef) isCrossinline = false isNoinline = false isVararg = false