blob: 7f7d22ea9d7b1e964a2045c789bac5b47ef8e9d3 [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
typedef struct {
unsigned long val;
} structty;
void bar(structty new_mask);
static void foo() {
bar(({ structty mask; mask; }));
}