blob: fbb97a9ee4f9db1df8f39b063086e18df3eb3994 [file] [log] [blame]
#include <ccan/container_of/container_of.h>
#include <stdlib.h>
struct foo {
int a;
char b;
};
int main(void)
{
struct foo foo = { .a = 1, .b = 2 }, *foop;
int *intp = &foo.a;
#ifdef FAIL
/* b is a char, but intp is an int * */
foop = container_of(intp, struct foo, b);
#else
foop = NULL;
#endif
(void) foop; /* Suppress unused-but-set-variable warning. */
return intp == NULL;
}