OSDN Git Service

New test cases.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ns / alias7.C
1 //Build don't link:
2 namespace A{
3   namespace B{int i;}
4   using namespace B;
5 }
6
7 namespace C=A;
8
9 void f(){
10   C::i = 1;
11 }