New testcase

llvm-svn: 2735
This commit is contained in:
Chris Lattner 2002-05-23 18:27:08 +00:00
parent 9dde5c9df7
commit 00c79bc218

View File

@ -0,0 +1,9 @@
/* Testcase for when struct tag conflicts with typedef name... grr */
typedef struct foo {
struct foo *X;
int Y;
} * foo;
foo F;