]> git.ozlabs.org Git - ccan/blob - ccan/check_type/test/compile_fail-check_type_unsigned.c
574d4aeb2402cf3f5ac6d0e7c3a1fe11a3e3de79
[ccan] / ccan / check_type / test / compile_fail-check_type_unsigned.c
1 #include <ccan/check_type/check_type.h>
2
3 int 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 }