For PR1338: Rename test dirs
[oota-llvm.git] / test / FrontendC / 2003-08-21-StmtExpr.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
4 typedef struct {
5   unsigned long val;
6 } structty;
7
8 void bar(structty new_mask);
9 static void foo() {
10   bar(({ structty mask; mask; }));
11 }
12