OpenCL GPU miner
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

43 lines
605 B

#include <ccan/typesafe_cb/typesafe_cb.h>
#include <stdlib.h>
struct foo {
int x;
};
struct bar {
int x;
};
struct baz {
int x;
};
struct any {
int x;
};
struct other {
int x;
};
static void take_any(struct any *any)
{
}
int main(int argc, char *argv[])
{
#ifdef FAIL
struct other
#if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P
#error "Unfortunately we don't fail if typesafe_cb_cast is a noop."
#endif
#else
struct foo
#endif
*arg = NULL;
take_any(typesafe_cb_cast3(struct any *,
struct foo *, struct bar *, struct baz *,
arg));
return 0;
}