Yet another testcase distilled from emacs by Misha!

llvm-svn: 8010
This commit is contained in:
Chris Lattner 2003-08-21 18:25:37 +00:00
parent ee333b1194
commit f08cb1accf
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
typedef struct {
unsigned long val;
} structty;
void bar(structty new_mask);
static void foo() {
bar(({ structty mask; mask; }));
}