diff options
Diffstat (limited to 'test/CodeGen/2002-05-23-TypeNameCollision.c')
-rw-r--r-- | test/CodeGen/2002-05-23-TypeNameCollision.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeGen/2002-05-23-TypeNameCollision.c b/test/CodeGen/2002-05-23-TypeNameCollision.c new file mode 100644 index 0000000000..c15c952e77 --- /dev/null +++ b/test/CodeGen/2002-05-23-TypeNameCollision.c @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -emit-llvm %s -o /dev/null + +/* Testcase for when struct tag conflicts with typedef name... grr */ + +typedef struct foo { + struct foo *X; + int Y; +} * foo; + +foo F1; +struct foo *F2; + +enum bar { test1, test2 }; + +typedef float bar; + +enum bar B1; +bar B2; + |