1 // { dg-options "-fnon-call-exceptions" }
2 
3 struct Ax {
4   int n, a[];
5 };
6 
7 #if __SIZEOF_INT__ < 4
8 int i = 12345;
9 #else
10 int i = 12345678;
11 #endif
main()12 int main() {
13   static Ax s{456, i};
14   ((s.a[0]) ? (void)0 : (void)0);
15 }
16