blob: 8c0227af24ba7b57dfc7ed291d2ae25aeb014562 [file] [log] [blame]
Norman James6a58a272015-10-07 14:34:16 -05001#include <ccan/check_type/check_type.h>
2
3int main(int argc, char *argv[])
4{
5#ifdef FAIL
6#if HAVE_TYPEOF
7 check_type(argc, unsigned int);
8#else
9 /* This doesn't work without typeof, so just fail */
10#error "Fail without typeof"
11#endif
12#endif
13 return 0;
14}