FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / alias7.C
blobce1ebb8675592c670adc627b95451eb9d792df4b
1 //Build don't link:
2 namespace A{
3   namespace B{int i;}
4   using namespace B;
7 namespace C=A;
9 void f(){
10   C::i = 1;