From 5e7e8b98f49eda9ffb9817d97975a211c87c5a53 Mon Sep 17 00:00:00 2001 From: Patrick Palka Date: Fri, 24 Apr 2020 21:16:59 -0400 Subject: [PATCH] c++: add "'requires' only available with ..." note This adds a note suggesting to enable concepts whenever 'requires' is parsed as an invalid type name with concepts disabled. gcc/cp/ChangeLog: * parser.c (cp_parser_diagnose_invalid_type_name): Suggest enabling concepts if the invalid identifier is 'requires'. gcc/testsuite/ChangeLog: * g++.dg/concepts/diagnostic11.C: New test. --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/parser.c | 3 +++ gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/g++.dg/concepts/diagnostic11.C | 6 ++++++ 4 files changed, 18 insertions(+) create mode 100644 gcc/testsuite/g++.dg/concepts/diagnostic11.C diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5b9ff5a694c..2a5b4171366 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2020-04-25 Patrick Palka + + * parser.c (cp_parser_diagnose_invalid_type_name): Suggest enabling + concepts if the invalid identifier is 'requires'. + 2020-04-25 Jakub Jelinek PR c++/94742 diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index d2f3f853cb4..e1f9786893a 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -3378,6 +3378,9 @@ cp_parser_diagnose_invalid_type_name (cp_parser *parser, tree id, else if (!flag_concepts && id == ridpointers[(int)RID_CONCEPT]) inform (location, "% only available with %<-std=c++2a%> or " "%<-fconcepts%>"); + else if (!flag_concepts && id == ridpointers[(int)RID_REQUIRES]) + inform (location, "% only available with %<-std=c++2a%> or " + "%<-fconcepts%>"); else if (processing_template_decl && current_class_type && TYPE_BINFO (current_class_type)) { diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b9be66865cd..efbfe99d0d9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2020-04-25 Patrick Palka + + * g++.dg/concepts/diagnostic11.C: New test. + 2020-04-25 Jakub Jelinek PR c++/94742 diff --git a/gcc/testsuite/g++.dg/concepts/diagnostic11.C b/gcc/testsuite/g++.dg/concepts/diagnostic11.C new file mode 100644 index 00000000000..7c60912352a --- /dev/null +++ b/gcc/testsuite/g++.dg/concepts/diagnostic11.C @@ -0,0 +1,6 @@ +// { dg-do compile { target c++17_only } } + +template + requires B // { dg-error ".requires. does not name a type" } +// { dg-message ".requires. only available with" "" { target *-*-* } .-1 } +void foo() { } -- 2.30.2