blob: 795e7606701955440ebd81e816946f36abecbcc8 [file] [log] [blame]
#include <ccan/check_type/check_type.h>
int main(int argc, char *argv[])
{
(void)argc;
(void)argv;
#ifdef FAIL
#if HAVE_TYPEOF
check_type(argc, unsigned int);
#else
/* This doesn't work without typeof, so just fail */
#error "Fail without typeof"
#endif
#endif
return 0;
}