New testcase, for PR 115
[oota-llvm.git] / test / CFrontend / 2003-08-23-LocalUnionTest.c
1
2
3 union foo { int X; };
4
5 int test(union foo* F) {
6   {
7     union foo { float X; } A;
8   }
9 }