blob: a5eefe70b2aa54565ce3a4f2676c2237f45c1744 [file] [log] [blame]
typedef struct {
unsigned long val;
} structty;
void bar(structty new_mask);
static void foo() {
bar(({ structty mask; mask; }));
}