Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.old-deja / g++.ns / lookup4.C
blobe4b4be31fdd329b798fad9423da80363365fee9f
1 // { dg-do assemble  }
2 namespace X{
3   typedef int foo;
4   const int bar=2;
5   namespace Y{
6     void f(foo);
7     extern int g;
8     extern int g1;
9     struct h{
10       void i(foo);
11     };
12   }
15 void X::Y::f(foo)
19 int X::Y::g = bar;
20 int X::Y::g1(bar);
22 void X::Y::h::i(foo)