blob: 35508c95ce34b1630e77a3f0e896159f283a5d05 [file] [log] [blame]
/* 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;