PR c++/51586
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 17 Dec 2011 20:15:39 +0000 (20:15 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 17 Dec 2011 20:15:39 +0000 (20:15 +0000)
* parser.c (cp_parser_check_class_key): Handle error_mark_node.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182442 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lookup/nested2.C [new file with mode: 0644]

index a63aa16..898a6bf 100644 (file)
@@ -1,5 +1,8 @@
 2011-12-17  Jason Merrill  <jason@redhat.com>
 
+       PR c++/51586
+       * parser.c (cp_parser_check_class_key): Handle error_mark_node.
+
        PR c++/51587
        * decl.c (start_enum): Avoid using ENUM_UNDERLYING_TYPE on a
        non-enum.
index 30c7745..ac7427e 100644 (file)
@@ -22624,6 +22624,8 @@ cp_parser_token_is_class_key (cp_token* token)
 static void
 cp_parser_check_class_key (enum tag_types class_key, tree type)
 {
+  if (type == error_mark_node)
+    return;
   if ((TREE_CODE (type) == UNION_TYPE) != (class_key == union_type))
     {
       permerror (input_location, "%qs tag used in naming %q#T",
index 71194f5..066121d 100644 (file)
@@ -1,5 +1,8 @@
 2011-12-17  Jason Merrill  <jason@redhat.com>
 
+       PR c++/51586
+       * g++.dg/lookup/nested2.C: New.
+
        PR c++/51587
        * g++.dg/parse/enum6.C: New.
 
diff --git a/gcc/testsuite/g++.dg/lookup/nested2.C b/gcc/testsuite/g++.dg/lookup/nested2.C
new file mode 100644 (file)
index 0000000..361a0c7
--- /dev/null
@@ -0,0 +1,6 @@
+// PR c++/51586
+
+union U
+{
+  union U { int i; };          // { dg-error "same name" }
+};