summaryrefslogtreecommitdiff
path: root/support/regression/tests/bug1579664.c
blob: 9fd02e9162ea8bd3766a65373fafb301c7b3c5eb (plain)
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);
}