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

int main(int argc, char *argv[])
{
#ifdef FAIL
	check_type(argc, char);
#endif
	return 0;
}