Test more thoroughly
authorChris Lattner <sabre@nondot.org>
Mon, 24 Jun 2002 21:37:08 +0000 (21:37 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 24 Jun 2002 21:37:08 +0000 (21:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2769 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2002-05-23-TypeNameCollision.c

index 49d92806051629899e75e76a8404dbcb8f491857..35508c95ce34b1630e77a3f0e896159f283a5d05 100644 (file)
@@ -5,5 +5,13 @@ typedef struct foo {
   int Y;
 } * foo;
 
-foo F;
+foo F1;
+struct foo *F2;
+
+enum bar { test1, test2 };
+
+typedef float bar;
+
+enum bar B1;
+bar B2;