c++: Template keyword following :: [PR96082]
authorMarek Polacek <polacek@redhat.com>
Tue, 4 Aug 2020 13:35:25 +0000 (09:35 -0400)
committerMarek Polacek <polacek@redhat.com>
Tue, 4 Aug 2020 17:41:36 +0000 (13:41 -0400)
In r9-4235 I tried to make sure that the template keyword follows
a nested-name-specifier.  :: is a valid nested-name-specifier, so
I also have to check 'globalscope' before giving the error.

gcc/cp/ChangeLog:

PR c++/96082
* parser.c (cp_parser_elaborated_type_specifier): Allow
'template' following ::.

gcc/testsuite/ChangeLog:

PR c++/96082
* g++.dg/template/template-keyword3.C: New test.

gcc/cp/parser.c
gcc/testsuite/g++.dg/template/template-keyword3.C [new file with mode: 0644]

index 1e7cd1963a1fb816f46edfb252c35aae08f7905c..981c625a3cdd5e3623de194f224f42fdc91e831a 100644 (file)
@@ -18840,7 +18840,7 @@ cp_parser_elaborated_type_specifier (cp_parser* parser,
       if (!template_p)
        cp_parser_parse_tentatively (parser);
       /* The `template' keyword must follow a nested-name-specifier.  */
-      else if (!nested_name_specifier)
+      else if (!nested_name_specifier && !globalscope)
        {
          cp_parser_error (parser, "%<template%> must follow a nested-"
                           "name-specifier");
diff --git a/gcc/testsuite/g++.dg/template/template-keyword3.C b/gcc/testsuite/g++.dg/template/template-keyword3.C
new file mode 100644 (file)
index 0000000..91af2b3
--- /dev/null
@@ -0,0 +1,11 @@
+// PR c++/96082
+// { dg-do compile { target c++11 } }
+
+template <class> class A {};
+
+void
+f ()
+{ 
+  typename::template A <int> a;
+  ::template A <int> a2;
+}