1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* bug1579664.c */ #include <testfwk.h> // no need to call this, it generates parser error: // syntax error: token -> 'foo' ; column 10 typedef struct foo foo; struct foo { foo * next; int bar; }; void testBug (void) { ASSERT (1); }