summaryrefslogtreecommitdiff
path: root/lib/ccan/check_type/test/compile_fail-check_types_match.c
blob: cbd6e9bc5b45fd79739b8bdebd9b3a68c5b3dca3 (plain)
1
2
3
4
5
6
7
8
9
10
#include <ccan/check_type/check_type.h>

int main(int argc, char *argv[])
{
	unsigned char x = argc;
#ifdef FAIL
	check_types_match(argc, x);
#endif
	return x;
}