[committed] Fix minor SH scan-asm failure after recent IOR->ADD changes
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / ns12.C
blob76e18724334f8a0073ddb77e2ed6a2e32317d62e
1 // { dg-do run  }
2 namespace {
3   int i = 10;
4   enum fish { one = 1, two = 2, red = 3, blue = 4 };
6 extern "C" int printf (const char *, ...);
7 int main(void)
9   if (i != 10) {
10     return 1;
11   }
12   if (one != 1) {
13     return 2;
14   }