llvm-6502/test/CFrontend/2003-08-23-LocalUnionTest.c
Chris Lattner 47ddea2d2a New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8085 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-23 22:09:26 +00:00

10 lines
90 B
C

union foo { int X; };
int test(union foo* F) {
{
union foo { float X; } A;
}
}