summaryrefslogtreecommitdiffstats
path: root/lib/ccan/cast/test/compile_fail-cast_signed-const.c
blob: 9971dc8eb320cbdc1fc3cfcde2c71b34ea51f6ad (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/cast/cast.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
	unsigned char *uc;
#ifdef FAIL
	const
#endif
	char
		*p = NULL;

	uc = cast_signed(unsigned char *, p);
	(void) uc; /* Suppress unused-but-set-variable warning. */
	return 0;
}

#ifdef FAIL
#if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P
#error "Unfortunately we don't fail if cast_const can only use size"
#endif
#endif