blob: 987accca1cc1e54d87eeb33804aba3c1be397be9 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3
4
5union foo { int X; };
6
7int test(union foo* F) {
8 {
9 union foo { float X; } A;
10 }
11}