summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/alias7.C
blob: ce1ebb8675592c670adc627b95451eb9d792df4b (plain)
1
2
3
4
5
6
7
8
9
10
11
//Build don't link:
namespace A{
  namespace B{int i;}
  using namespace B;
}

namespace C=A;

void f(){
  C::i = 1;
}