re PR c++/14510 (Lookup error between function name and struct name)
authorMark Mitchell <mark@codesourcery.com>
Thu, 11 Mar 2004 04:25:38 +0000 (04:25 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 11 Mar 2004 04:25:38 +0000 (04:25 +0000)
PR c++/14510
* decl.c (xref_tag): Disregard non-type declarations when
looking up a tagged type.

PR c++/14510
* g++.dg/lookup/struct2.C: New test.

From-SVN: r79298

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

index a0d2b06..f746718 100644 (file)
@@ -1,3 +1,9 @@
+2004-03-10  Mark Mitchell  <mark@codesourcery.com>
+
+       PR c++/14510
+       * decl.c (xref_tag): Disregard non-type declarations when
+       looking up a tagged type. 
+
 2004-03-09  Nathan Sidwell  <nathan@codesourcery.com>
 
        PR c++/14397
index c2698ec..e642c26 100644 (file)
@@ -9305,7 +9305,7 @@ xref_tag (enum tag_types tag_code, tree name,
     }
   else
     {
-      tree decl = lookup_name (name, 1);
+      tree decl = lookup_name (name, 2);
 
       if (decl && DECL_CLASS_TEMPLATE_P (decl))
        decl = DECL_TEMPLATE_RESULT (decl);
index 21b2f05..df12379 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-10  Mark Mitchell  <mark@codesourcery.com>
+
+       PR c++/14510
+       * g++.dg/lookup/struct2.C: New test.
+
 2004-03-10  Uros Bizjak  <uros@kss-loka.si>
 
        * gcc.dg/builtins-34.c: New test.
diff --git a/gcc/testsuite/g++.dg/lookup/struct2.C b/gcc/testsuite/g++.dg/lookup/struct2.C
new file mode 100644 (file)
index 0000000..a66f403
--- /dev/null
@@ -0,0 +1,7 @@
+// PR c++/14510
+
+struct c {};
+namespace A {
+  int c(struct c*req);
+}
+int A::c(struct c*req) {}