blob: c60c0ce752d8951cc332edff1423145ff81dcb61 [file] [log] [blame]
typedef int thing;
struct s {
int a;
int * b;
int c[7];
int (*d)(void);
thing e;
};
void f(struct s t) {
(void) t;
}