[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGen / 2003-08-23-LocalUnionTest.c
blob50b01e4258784828bea9e744be3739598d3ce9d5
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
5 union foo { int X; };
7 int test(union foo* F) {
9 union foo { float X; } A;