================ @@ -3437,10 +3437,10 @@ bool Sema::SubstDefaultArgument( // template<typename T> void f(T a, int = decltype(a)()); // void g() { f(0); } LIS = std::make_unique<LocalInstantiationScope>(*this); - FunctionDecl *PatternFD = FD->getTemplateInstantiationPattern( - /*ForDefinition*/ false); - if (addInstantiatedParametersToScope(FD, PatternFD, *LIS, TemplateArgs)) - return true; + if (FunctionDecl *PatternFD = + FD->getTemplateInstantiationPattern(/*ForDefinition*/ false)) + if (addInstantiatedParametersToScope(FD, PatternFD, *LIS, TemplateArgs)) + return true; ---------------- zyn0217 wrote:
OTOH I'm wondering if we could avoid substituting into default arguments if we already know the friend declaration is not a definition. The function declaration instantiation seems to intentionally avoid adding connections to the primary template if the friend declaration is not a definition, which is why `getTemplateInstantiationPattern()` returns nullptr here. https://github.com/llvm/llvm-project/pull/113777 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits