]> git.ozlabs.org Git - ccan/blobdiff - container_of/test/compile_fail-bad-type.c
Move modules to ccan/ tools to tools/
[ccan] / container_of / test / compile_fail-bad-type.c
diff --git a/container_of/test/compile_fail-bad-type.c b/container_of/test/compile_fail-bad-type.c
deleted file mode 100644 (file)
index 01dfd45..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "container_of/container_of.h"
-#include <stdlib.h>
-
-struct foo {
-       int a;
-       char b;
-};
-
-int main(int argc, char *argv[])
-{
-       struct foo foo = { .a = 1, .b = 2 };
-       int *intp = &foo.a;
-       char *p;
-
-#ifdef FAIL
-       /* p is a char *, but this gives a struct foo * */
-       p = container_of(intp, struct foo, a);
-#else
-       p = (char *)intp;
-#endif
-       return p == NULL;
-}