decl2.c (do_nonmember_using_decl): Correct handling of simultaneous type/non-type...
authorMark Mitchell <mark@codesourcery.com>
Thu, 13 Mar 2003 20:54:36 +0000 (20:54 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 13 Mar 2003 20:54:36 +0000 (20:54 +0000)
* decl2.c (do_nonmember_using_decl): Correct handling of
simultaneous type/non-type bindings.

* g++.dg/parse/namespace9.C: New test.

From-SVN: r64323

gcc/cp/ChangeLog
gcc/cp/decl2.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/parse/namespace9.C [new file with mode: 0644]

index 6a679d2..2916688 100644 (file)
@@ -1,5 +1,8 @@
 2003-03-13  Mark Mitchell  <mark@codesourcery.com>
 
+       * decl2.c (do_nonmember_using_decl): Correct handling of
+       simultaneous type/non-type bindings.
+
        * call.c (initialize_reference): Remove bogus assertion.
        * decl.c (build_ptrmemfunc_type): Revert change of 2003-03-09.
 
index b4654c9..fb25127 100644 (file)
@@ -4222,6 +4222,13 @@ do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype,
     {
       tree tmp, tmp1;
 
+      if (oldval && !is_overloaded_fn (oldval))
+       {
+         if (!DECL_IMPLICIT_TYPEDEF_P (oldval))
+           error ("`%D' is already declared in this scope", name);
+         oldval = NULL_TREE;
+       }
+
       *newval = oldval;
       for (tmp = BINDING_VALUE (decls); tmp; tmp = OVL_NEXT (tmp))
        {
index 3407e5c..1cf0834 100644 (file)
@@ -1,5 +1,7 @@
 2003-03-13  Mark Mitchell  <mark@codesourcery.com>
 
+       * g++.dg/parse/namespace9.C: New test.
+
        * g++.dg/init/ref5.C: New test.
        * g++.dg/parse/ptrmem1.C: Likewise.
 
diff --git a/gcc/testsuite/g++.dg/parse/namespace9.C b/gcc/testsuite/g++.dg/parse/namespace9.C
new file mode 100644 (file)
index 0000000..7ff0267
--- /dev/null
@@ -0,0 +1,8 @@
+namespace A {
+  void f();
+}
+int g()
+{
+  struct f { };
+  using A::f;
+}