view tests/t08.c @ 123:9f479b52364a

Add a bunch more options I forgot earlier (!) In case anyone's wondering, the crazy family of include path options comes from gcc.
author David A. Holland
date Tue, 11 Jun 2013 19:02:33 -0400
parents c24cbfa44f81
children
line wrap: on
line source

/*#include <stdio.h>*/

int d =
#if 2 > 1 ? 0 : 0 ? 1 : 1
1
#else
0
#endif
;

int e =
#if (2 > 1 ? 0 : 0) ? 1 : 1
1
#else
0
#endif
;

int f =
#if 2 > 1 ? 0 : (0 ? 1 : 1)
1
#else
0
#endif
;


int
main()
{
	int a, b, c;

	a = 2 > 1 ? 0 : 0 ? 1 : 1;
	b = (2 > 1 ? 0 : 0) ? 1 : 1;
	c = 2 > 1 ? 0 : (0 ? 1 : 1);

	printf("%d %d %d\n", a, b, c);
	printf("%d %d %d\n", d, e, f);

	return 0;
}