blob: 39db694400d8715904efe9430b2c09575a003c08 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4typedef struct {
5 unsigned long val;
6} structty;
7
8void bar(structty new_mask);
9static void foo() {
10 bar(({ structty mask; mask; }));
11}
12