OSDN Git Service

* name-lookup.c (current_decl_namespace): Non-static.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / using19.C
1 // Copyright (C) 2007 Free Software Foundation
2 // Contributed by Ollie Wild <aaw@google.com>
3 // { dg-do compile }
4
5
6 // C++ Standard, 7.3.3, clause 10:
7 // "Since a using-declaration is a declaration, the restrictions on
8 // declarations of the same name in the same declarative region (3.3) also
9 // apply to using-declarations."
10
11 namespace M
12 {
13   union A;
14   void B();
15 }
16
17 void A();
18 union B;
19
20 using M::A;
21 using M::B;