xref: /aosp_15_r20/external/clang/test/CodeGen/2003-08-21-StmtExpr.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 
4 typedef struct {
5   unsigned long val;
6 } structty;
7 
8 void bar(structty new_mask);
foo()9 static void foo() {
10   bar(({ structty mask; mask; }));
11 }
12 
13