llvm-6502/test/CFrontend/2003-08-21-StmtExpr.c
2003-08-21 18:25:37 +00:00

11 lines
139 B
C

typedef struct {
unsigned long val;
} structty;
void bar(structty new_mask);
static void foo() {
bar(({ structty mask; mask; }));
}