c++: Implement for namespace statics CWG 2867 - Order of initialization for structure...
[official-gcc.git] / gcc / testsuite / gcc.dg / pr103207.c
blobb3043f471fb61f06e224386a397d93c90c66b44f
1 // { dg-do compile }
2 // { dg-options "-O2 --param case-values-threshold=1 -w" }
4 int f (__INT32_TYPE__ i)
6 switch (i) {
7 case 2147483647:
8 return 1;
9 case 9223372036854775807L:
10 return 2;
11 case (2147483647*4)%4:
12 return 4;
14 return 0;