netbsd/external/bsd/llvm/dist/clang/test/CodeGen/2003-08-23-LocalUnionTest.c
2014-01-15 10:53:42 +01:00

12 lines
138 B
C

// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
union foo { int X; };
int test(union foo* F) {
{
union foo { float X; } A;
}
}