Yet another testcase distilled from emacs by Misha!
[oota-llvm.git] / test / CFrontend / 2003-08-21-StmtExpr.c
1
2 typedef struct {
3   unsigned long val;
4 } structty;
5
6 void bar(structty new_mask);
7 static void foo() {
8   bar(({ structty mask; mask; }));
9 }
10