diff --git a/Analysis/src/ConstraintGenerator.cpp b/Analysis/src/ConstraintGenerator.cpp index 369b1170..c0fee4a2 100644 --- a/Analysis/src/ConstraintGenerator.cpp +++ b/Analysis/src/ConstraintGenerator.cpp @@ -2031,13 +2031,23 @@ InferencePack ConstraintGenerator::checkPack(const ScopePtr& scope, AstExprCall* } else if (i < exprArgs.size() - 1 || !(arg->is() || arg->is())) { - auto [ty, refinement] = check(scope, arg, /*expectedType*/ std::nullopt, /*forceSingleton*/ false, /*generalize*/ false); + std::optional expectedType; + if (i < expectedTypesForCall.size()) + { + expectedType = expectedTypesForCall[i]; + } + auto [ty, refinement] = check(scope, arg, expectedType, /*forceSingleton*/ false, /*generalize*/ false); args.push_back(ty); argumentRefinements.push_back(refinement); } else { - auto [tp, refis] = checkPack(scope, arg, {}); + std::vector> expectedTypes = {}; + if (i < expectedTypesForCall.size()) + { + expectedTypes.insert(expectedTypes.end(), expectedTypesForCall.begin() + i, expectedTypesForCall.end()); + } + auto [tp, refis] = checkPack(scope, arg, expectedTypes); argTail = tp; argumentRefinements.insert(argumentRefinements.end(), refis.begin(), refis.end()); }