blob: a5eefe70b2aa54565ce3a4f2676c2237f45c1744 [file] [log] [blame]
Chris Lattnerbcf86d82003-08-21 18:25:37 +00001
2typedef struct {
3 unsigned long val;
4} structty;
5
6void bar(structty new_mask);
7static void foo() {
8 bar(({ structty mask; mask; }));
9}
10