view tests/t08.good @ 184:d359d9b86327

Don't rely on anonymous unions. They break on... dun dun dun... Solaris. Such a shock.
author David A. Holland
date Fri, 12 Jun 2015 03:35:01 -0400
parents da557b87be61
children
line wrap: on
line source


int d =
0
;
int e =
1
;
int f =
0
;
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;
}