Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.ns / ns6.C
blob211df81eba6a89a1683269e85de842260ab4229c
1 // { dg-do run  }
2 namespace A{
3  int i;
4  namespace B{
5   void f(){i++;}
6   int i;
7   void g(){i++;}
8   }
11 int main()
13   return A::i-A::B::i;