New testcase distilled from mutt
[oota-llvm.git] / test / CFrontend / 2003-08-18-StructAsValue.c
1
2 typedef struct {
3   int op;
4 } event_t;
5
6 event_t test(int X) {
7   event_t foo, bar;
8   return X ? foo : bar;
9 }