xref: /aosp_15_r20/external/stg/test_cases/diff_tests/composite/members.0.c (revision 9e3b08ae94a55201065475453d799e8b1378bea6)
1 typedef int thing;
2 
3 struct s {
4   int a;
5   int * b;
6   int c[7];
7   int (*d)(void);
8   thing e;
9 };
10 
f(struct s t)11 void f(struct s t) {
12   (void) t;
13 }
14