aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2003-08-23-LocalUnionTest.c
blob: 01b830f284f38da5e9681baca5d4b7a913f04f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null



union foo { int X; };

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