Add more ADC and SBB variants
[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 F1;
9 struct foo *F2;
10
11 enum bar { test1, test2 };
12
13 typedef float bar;
14
15 enum bar B1;
16 bar B2;
17