1 2 3 4 5 6 7 8 9
typedef struct { int op; } event_t; event_t test(int X) { event_t foo, bar; return X ? foo : bar; }