2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / using8.C
blob1d5e58bc95c2fe7bd785ad3662de25c23a49fff0
1 // { dg-do assemble  }
2 namespace M {
3    int i;
5 namespace N {
6   using namespace M;
9 using namespace N;
10 int j = i;
12 namespace O{
13   int k;
16 namespace N {
17   using namespace O;
20 int l = k;