summaryrefslogtreecommitdiff
path: root/lib/ccan/tlist/test/compile_fail-tlist_for_each_safe.c
blob: 651c6cefd6dec598df4cbf43cbcf21493f214e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <ccan/tlist/tlist.h>

TLIST_TYPE(children, struct child);

struct child {
	const char *name;
	struct list_node list;
};

struct cousin {
	const char *name;
	struct list_node list;
};

int main(int argc, char *argv[])
{
	struct tlist_children children;
	struct child child = { "child" };
#ifdef FAIL
#if !HAVE_FLEXIBLE_ARRAY_MEMBER
#error Need flexible array members to check type
#endif
	struct cousin *c, *n;
#else
	struct child *c, *n;
#endif

	tlist_init(&children);
	tlist_add(&children, &child, list);

	tlist_for_each_safe(&children, c, n, list);
	return 0;
}