modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr51761.c (about) 1 /* PR middle-end/51761 */ 2 3 struct S { unsigned int len; }; 4 struct S foo (struct S); 5 6 struct S 7 bar (struct S x) 8 { 9 return ({ struct S a = x; foo (a); }); 10 }