aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2002-05-23-TypeNameCollision.c
blob: 49d92806051629899e75e76a8404dbcb8f491857 (plain)
1
2
3
4
5
6
7
8
9
/* Testcase for when struct tag conflicts with typedef name... grr */

typedef struct foo {
  struct foo *X;
  int Y;
} * foo;

foo F;