]> git.ozlabs.org Git - ccan/blobdiff - ccan/typesafe_cb/test/compile_ok-typesafe_cb_cast.c
typesafe_cb: simplify, preserve namespace.
[ccan] / ccan / typesafe_cb / test / compile_ok-typesafe_cb_cast.c
diff --git a/ccan/typesafe_cb/test/compile_ok-typesafe_cb_cast.c b/ccan/typesafe_cb/test/compile_ok-typesafe_cb_cast.c
new file mode 100644 (file)
index 0000000..4bb3b8b
--- /dev/null
@@ -0,0 +1,41 @@
+#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;
+};
+
+static void take_any(struct any *any)
+{
+}
+
+int main(int argc, char *argv[])
+{
+       /* Otherwise we get unused warnings for these. */
+       struct foo *foo = NULL;
+       struct bar *bar = NULL;
+       struct baz *baz = NULL;
+
+       take_any(typesafe_cb_cast3(struct any *,
+                                  struct foo *, struct bar *, struct baz *,
+                                  foo));
+       take_any(typesafe_cb_cast3(struct any *, 
+                                  struct foo *, struct bar *, struct baz *,
+                                  bar));
+       take_any(typesafe_cb_cast3(struct any *, 
+                                  struct foo *, struct bar *, struct baz *,
+                                  baz));
+       return 0;
+}