OSDN Git Service

2012-04-15 Fabien ChĂȘne <fabien@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / using3.C
1 // PR c++/9798
2
3 namespace std { }
4 namespace STL { using namespace std; }
5 namespace std {
6   using namespace STL;
7 }
8 namespace STL {
9   struct A {
10     void B() { using namespace std; }
11   };
12 }