From: Chris Lattner Date: Sat, 23 Aug 2003 22:09:26 +0000 (+0000) Subject: New testcase X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=47ddea2d2adc47337a4c296a5cd7b9dab30cfa23;p=oota-llvm.git New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8085 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2003-08-23-LocalUnionTest.c b/test/CFrontend/2003-08-23-LocalUnionTest.c new file mode 100644 index 00000000000..2558f981527 --- /dev/null +++ b/test/CFrontend/2003-08-23-LocalUnionTest.c @@ -0,0 +1,9 @@ + + +union foo { int X; }; + +int test(union foo* F) { + { + union foo { float X; } A; + } +}