summaryrefslogtreecommitdiff
path: root/test/CFrontend/2003-08-21-StmtExpr.c
blob: a5eefe70b2aa54565ce3a4f2676c2237f45c1744 (plain)
1
2
3
4
5
6
7
8
9
10

typedef struct {
  unsigned long val;
} structty;

void bar(structty new_mask);
static void foo() {
  bar(({ structty mask; mask; }));
}