X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_fail-cast_if_type-promotable.c;h=746facaef3ed102989afcc9c7f0a71df063e6fc3;hb=d9e93014a999102aa1cc9979e041cd58e6aca724;hp=a0362485c54320e534002c92273199514bc07aa4;hpb=894dd68a8c899ca7b5028334804fa1638b583908;p=ccan diff --git a/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c b/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c index a0362485..746facae 100644 --- a/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c +++ b/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c @@ -3,20 +3,21 @@ static void _set_some_value(void *val) { + (void)val; } #define set_some_value(expr) \ - _set_some_value(cast_if_type(void *, (expr), (expr), int)) + _set_some_value(typesafe_cb_cast(void *, long, (expr))) -int main(int argc, char *argv[]) +int main(void) { #ifdef FAIL bool x = 0; #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." +#error "Unfortunately we don't fail if typesafe_cb_cast is a noop." #endif #else - int x = 0; + long x = 0; #endif set_some_value(x); return 0;