summaryrefslogtreecommitdiff
path: root/test/FrontendC/2002-02-13-TypeVarNameCollision.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2002-02-13-TypeVarNameCollision.c')
-rw-r--r--test/FrontendC/2002-02-13-TypeVarNameCollision.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/FrontendC/2002-02-13-TypeVarNameCollision.c b/test/FrontendC/2002-02-13-TypeVarNameCollision.c
deleted file mode 100644
index 2dede68a38dd..000000000000
--- a/test/FrontendC/2002-02-13-TypeVarNameCollision.c
+++ /dev/null
@@ -1,16 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-/* This testcase causes a symbol table collision. Type names and variable
- * names should be in distinct namespaces
- */
-
-typedef struct foo {
- int X, Y;
-} FOO;
-
-static FOO foo[100];
-
-int test() {
- return foo[4].Y;
-}
-