2012-06-06 Fabien Chene <fabien@gcc.gnu.org>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Jun 2012 12:22:16 +0000 (12:22 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Jun 2012 12:22:16 +0000 (12:22 +0000)
PR c++/52841
* parser.c (cp_parser_alias_declaration): Return earlier
if an error occured.

* g++.dg/cpp0x/pr52841.C: New testcase.

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

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

index f473e2c..cd983fa 100644 (file)
@@ -1,3 +1,9 @@
+2012-06-06  Fabien ChĂȘne  <fabien@gcc.gnu.org>
+
+       PR c++/52841
+       * parser.c (cp_parser_alias_declaration): Return earlier
+       if an error occured.
+
 2012-06-04  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/53524
index 2afcbc0..5256d01 100644 (file)
@@ -15061,6 +15061,9 @@ cp_parser_alias_declaration (cp_parser* parser)
 
   cp_parser_require (parser, CPP_EQ, RT_EQ);
 
+  if (cp_parser_error_occurred (parser))
+    return error_mark_node;
+
   /* Now we are going to parse the type-id of the declaration.  */
 
   /*
index a219f84..540842b 100644 (file)
@@ -1,3 +1,8 @@
+2012-06-06  Fabien ChĂȘne  <fabien@gcc.gnu.org>
+
+       PR c++/52841
+       * g++.dg/cpp0x/pr52841.C: New testcase.
+
 2012-06-06  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/53081
diff --git a/gcc/testsuite/g++.dg/cpp0x/pr52841.C b/gcc/testsuite/g++.dg/cpp0x/pr52841.C
new file mode 100644 (file)
index 0000000..f6467f8
--- /dev/null
@@ -0,0 +1,17 @@
+// { dg-do compile }
+
+struct Solvable;
+namespace sat
+{
+  class Solvable
+    {
+  public:
+      typedef bool bool_type;
+    };
+}
+
+class Resolvable : public sat::Solvable
+{
+public:
+  using sat::Solvable::bool_type;
+};