1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-17 21:32:04 +00:00
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; }));
}