FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / lookup4.C
blob208a9d68459b907ae612a715ecd9862b930d78f6
1 //Build don't link:
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)