decl2.c (do_nonmember_using_decl): Correct handling of simultaneous type/non-type bindings.
* decl2.c (do_nonmember_using_decl): Correct handling of simultaneous type/non-type bindings. * g++.dg/parse/namespace9.C: New test. From-SVN: r64323
This commit is contained in:
parent
6d7b8b3509
commit
45707d3120
@ -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.
|
||||
|
||||
|
@ -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))
|
||||
{
|
||||
|
@ -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.
|
||||
|
||||
|
8
gcc/testsuite/g++.dg/parse/namespace9.C
Normal file
8
gcc/testsuite/g++.dg/parse/namespace9.C
Normal file
@ -0,0 +1,8 @@
|
||||
namespace A {
|
||||
void f();
|
||||
}
|
||||
int g()
|
||||
{
|
||||
struct f { };
|
||||
using A::f;
|
||||
}
|
Loading…
Reference in New Issue
Block a user