view tests/t08.good @ 75:980ed7cb620a

More multiline comment fixes. It looks like the only rational way to handle multiline comments is to treat the newlines as fully part of the comment text.
author David A. Holland
date Mon, 10 Jun 2013 19:56:55 -0400
parents c24cbfa44f81
children da557b87be61
line wrap: on
line source


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