summaryrefslogtreecommitdiff
path: root/ccan/version/test/compile_fail.c
blob: 8cf64b10f6f85676d4131175c7277df68ad4ddd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <ccan/version/version.h>
#include <ccan/tap/tap.h>

int main(void)
{
#ifdef FAIL
	struct version a;
	a = 0; /* no direct assignment */
#endif
	return 0;
}