aboutsummaryrefslogtreecommitdiff
path: root/test/CFrontend/2003-08-18-StructAsValue.c
blob: fbf6988fa2506634616966facfd909c5ed382ffc (plain)
1
2
3
4
5
6
7
8
9
typedef struct {
  int op;
} event_t;

event_t test(int X) {
  event_t foo = { 1 }, bar = { 2 };
  return X ? foo : bar;
}