1// 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
13