summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/using3.C
blob: f3642759717dc1dc98f538264f905988b4923cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/9798

namespace std { }
namespace STL { using namespace std; }
namespace std {
  using namespace STL;
}
namespace STL {
  struct A {
    void B() { using namespace std; }
  };
}