Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.ns / ns12.C
blobc5468914f110807ca8a93e2e0148028fb9364f5f
1 // { dg-do run  }
2 namespace fred
4   int barney();
5   extern int wilma;
8 int fred::barney()
10   return fred::wilma;
13 int fred::wilma;
15 int barney()
17   return 1;
20 int main()
22   return fred::barney();