Remove test/FrontendC, almost all of the tests have been migrated
[oota-llvm.git] / test / FrontendC / 2003-08-23-LocalUnionTest.c
diff --git a/test/FrontendC/2003-08-23-LocalUnionTest.c b/test/FrontendC/2003-08-23-LocalUnionTest.c
deleted file mode 100644 (file)
index 987accc..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-
-
-union foo { int X; };
-
-int test(union foo* F) {
-  {
-    union foo { float X; } A;
-  }
-}