vfs: Convert vfswrap_fs_capabilities to synthetic_smb_fname
[Samba/gebeck_regimport.git] / lib / ccan / container_of / test / compile_fail-types.c
blobcae1c7abd20a1ed36ae6072faa8b50d9aea2644e
1 #include <ccan/container_of/container_of.h>
2 #include <stdlib.h>
4 struct foo {
5 int a;
6 char b;
7 };
9 int main(int argc, char *argv[])
11 struct foo foo = { .a = 1, .b = 2 }, *foop;
12 int *intp = &foo.a;
14 #ifdef FAIL
15 /* b is a char, but intp is an int * */
16 foop = container_of(intp, struct foo, b);
17 #else
18 foop = NULL;
19 #endif
20 (void) foop; /* Suppress unused-but-set-variable warning. */
21 return intp == NULL;