New testcase
[oota-llvm.git] / test / CFrontend / 2002-05-23-TypeNameCollision.c
1 /* Testcase for when struct tag conflicts with typedef name... grr */
2
3 typedef struct foo {
4   struct foo *X;
5   int Y;
6 } * foo;
7
8 foo F;
9