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

10 lines
136 B
C
Raw Normal View History

/* Testcase for when struct tag conflicts with typedef name... grr */
typedef struct foo {
struct foo *X;
int Y;
} * foo;
foo F;