X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=typesafe_cb%2Ftest%2Fcompile_fail-typesafe_cb_postargs.c;fp=typesafe_cb%2Ftest%2Fcompile_fail-typesafe_cb_postargs.c;h=0000000000000000000000000000000000000000;hb=650c775ff00cccd03fc84e7789a03c51d9839004;hp=099eb25755559e1c26fd3d807c265d7bf7f55071;hpb=c8acddea39d222312102952e91c32cfe4dd2cea0;p=ccan diff --git a/typesafe_cb/test/compile_fail-typesafe_cb_postargs.c b/typesafe_cb/test/compile_fail-typesafe_cb_postargs.c deleted file mode 100644 index 099eb257..00000000 --- a/typesafe_cb/test/compile_fail-typesafe_cb_postargs.c +++ /dev/null @@ -1,27 +0,0 @@ -#include "typesafe_cb/typesafe_cb.h" -#include - -static void _register_callback(void (*cb)(void *arg, int x), void *arg) -{ -} -#define register_callback(cb, arg) \ - _register_callback(typesafe_cb_postargs(void, (cb), (arg), int), (arg)) - -static void my_callback(char *p, int x) -{ -} - -int main(int argc, char *argv[]) -{ -#ifdef FAIL - int *p; -#if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P -#error "Unfortunately we don't fail if cast_if_type is a noop." -#endif -#else - char *p; -#endif - p = NULL; - register_callback(my_callback, p); - return 0; -}