summaryrefslogtreecommitdiffstats
path: root/op-flasher/pflash/ccan/container_of/test/compile_fail-types.c
blob: acd57c7d657599450e708d760d45bae5031653c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <ccan/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 }, *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;
}
OpenPOWER on IntegriCloud