luken-google updated this revision to Diff 476462. luken-google added a comment.
Adding release note. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D138210/new/ https://reviews.llvm.org/D138210 Files: clang/docs/ReleaseNotes.rst clang/lib/Sema/SemaTemplate.cpp clang/test/SemaTemplate/concepts.cpp Index: clang/test/SemaTemplate/concepts.cpp =================================================================== --- clang/test/SemaTemplate/concepts.cpp +++ clang/test/SemaTemplate/concepts.cpp @@ -766,3 +766,24 @@ __iterator_traits_member_pointer_or_arrow_or_void<counted_iterator<int>> f; } }// namespace InheritedFromPartialSpec + +namespace GH48182 { +template<typename, typename..., typename = int> // expected-error{{template parameter pack must be the last template parameter}} +concept invalid = true; + +template<typename> requires invalid<int> // expected-error{{use of undeclared identifier 'invalid'}} +no errors are printed +; + +static_assert(invalid<int> also here ; // expected-error{{use of undeclared identifier 'invalid'}} + +int foo() { + bool b; + b = invalid<int> not just in declarations; // expected-error{{expected ';' after expression}} + // expected-error@-1{{use of undeclared identifier 'invalid'}} + // expected-error@-2{{expected ';' after expression}} + // expected-error@-3{{use of undeclared identifier 'just'}} + // expected-error@-4{{unknown type name 'in'}} + return b; +} +} // namespace GH48182 Index: clang/lib/Sema/SemaTemplate.cpp =================================================================== --- clang/lib/Sema/SemaTemplate.cpp +++ clang/lib/Sema/SemaTemplate.cpp @@ -8923,17 +8923,31 @@ return nullptr; } - if (TemplateParameterLists.front()->size() == 0) { + TemplateParameterList *Params = TemplateParameterLists.front(); + + if (Params->size() == 0) { Diag(NameLoc, diag::err_concept_no_parameters); return nullptr; } + for (TemplateParameterList::const_iterator ParamIt = Params->begin(), + ParamEnd = Params->end(); + ParamIt != ParamEnd; ++ParamIt) { + Decl const *Param = *ParamIt; + if (Param->isParameterPack()) { + if (++ParamIt == ParamEnd) + break; + Diag(Param->getLocation(), + diag::err_template_param_pack_must_be_last_template_parameter); + return nullptr; + } + } + if (DiagnoseUnexpandedParameterPack(ConstraintExpr)) return nullptr; - ConceptDecl *NewDecl = ConceptDecl::Create(Context, DC, NameLoc, Name, - TemplateParameterLists.front(), - ConstraintExpr); + ConceptDecl *NewDecl = + ConceptDecl::Create(Context, DC, NameLoc, Name, Params, ConstraintExpr); if (NewDecl->hasAssociatedConstraints()) { // C++2a [temp.concept]p4: Index: clang/docs/ReleaseNotes.rst =================================================================== --- clang/docs/ReleaseNotes.rst +++ clang/docs/ReleaseNotes.rst @@ -638,6 +638,8 @@ ([temp.func.order]p6.2.1 is not implemented, matching GCC). - Implemented `P0857R0 <https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0857r0.html>`_, which specifies constrained lambdas and constrained template *template-parameter*\s. +- Required parameter pack to be provided at the end of the concept parameter list. This + fixes `Issue 48182 <https://github.com/llvm/llvm-project/issues/48182>`_. - Do not hide templated base members introduced via using-decl in derived class (useful specially for constrained members). Fixes `GH50886 <https://github.com/llvm/llvm-project/issues/50886>`_.
Index: clang/test/SemaTemplate/concepts.cpp =================================================================== --- clang/test/SemaTemplate/concepts.cpp +++ clang/test/SemaTemplate/concepts.cpp @@ -766,3 +766,24 @@ __iterator_traits_member_pointer_or_arrow_or_void<counted_iterator<int>> f; } }// namespace InheritedFromPartialSpec + +namespace GH48182 { +template<typename, typename..., typename = int> // expected-error{{template parameter pack must be the last template parameter}} +concept invalid = true; + +template<typename> requires invalid<int> // expected-error{{use of undeclared identifier 'invalid'}} +no errors are printed +; + +static_assert(invalid<int> also here ; // expected-error{{use of undeclared identifier 'invalid'}} + +int foo() { + bool b; + b = invalid<int> not just in declarations; // expected-error{{expected ';' after expression}} + // expected-error@-1{{use of undeclared identifier 'invalid'}} + // expected-error@-2{{expected ';' after expression}} + // expected-error@-3{{use of undeclared identifier 'just'}} + // expected-error@-4{{unknown type name 'in'}} + return b; +} +} // namespace GH48182 Index: clang/lib/Sema/SemaTemplate.cpp =================================================================== --- clang/lib/Sema/SemaTemplate.cpp +++ clang/lib/Sema/SemaTemplate.cpp @@ -8923,17 +8923,31 @@ return nullptr; } - if (TemplateParameterLists.front()->size() == 0) { + TemplateParameterList *Params = TemplateParameterLists.front(); + + if (Params->size() == 0) { Diag(NameLoc, diag::err_concept_no_parameters); return nullptr; } + for (TemplateParameterList::const_iterator ParamIt = Params->begin(), + ParamEnd = Params->end(); + ParamIt != ParamEnd; ++ParamIt) { + Decl const *Param = *ParamIt; + if (Param->isParameterPack()) { + if (++ParamIt == ParamEnd) + break; + Diag(Param->getLocation(), + diag::err_template_param_pack_must_be_last_template_parameter); + return nullptr; + } + } + if (DiagnoseUnexpandedParameterPack(ConstraintExpr)) return nullptr; - ConceptDecl *NewDecl = ConceptDecl::Create(Context, DC, NameLoc, Name, - TemplateParameterLists.front(), - ConstraintExpr); + ConceptDecl *NewDecl = + ConceptDecl::Create(Context, DC, NameLoc, Name, Params, ConstraintExpr); if (NewDecl->hasAssociatedConstraints()) { // C++2a [temp.concept]p4: Index: clang/docs/ReleaseNotes.rst =================================================================== --- clang/docs/ReleaseNotes.rst +++ clang/docs/ReleaseNotes.rst @@ -638,6 +638,8 @@ ([temp.func.order]p6.2.1 is not implemented, matching GCC). - Implemented `P0857R0 <https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0857r0.html>`_, which specifies constrained lambdas and constrained template *template-parameter*\s. +- Required parameter pack to be provided at the end of the concept parameter list. This + fixes `Issue 48182 <https://github.com/llvm/llvm-project/issues/48182>`_. - Do not hide templated base members introduced via using-decl in derived class (useful specially for constrained members). Fixes `GH50886 <https://github.com/llvm/llvm-project/issues/50886>`_.
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits