modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/stuct.c (about) 1 #ifdef STACK_SIZE 2 #define SIZE STACK_SIZE / 8 3 #else 4 #define SIZE 10000000 5 #endif 6 7 struct foo 8 { 9 int a, b, c; 10 int arr[SIZE]; 11 }; 12 13 struct foo s, ss; 14 15 main () 16 { 17 18 s.b = 2; 19 s.c = 3; 20 ss.b = 2; 21 ss.c = 3; 22 }