blob: 9b8b5a2b1c19b706539058e86ce1cca9d8cd692d [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4typedef struct {
5 int op;
6} event_t;
7
8event_t test(int X) {
9 event_t foo = { 1 }, bar = { 2 };
10 return X ? foo : bar;
11}