Yet another testcase distilled from emacs by Misha!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8010 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-08-21 18:25:37 +00:00
parent 76bbaa53ca
commit bcf86d8ddb

View File

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