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 99d18c55fe
commit bce5e9b2b2

View File

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