xref: /netbsd-src/external/bsd/tradcpp/dist/tests/t08.good (revision 31615c9617fab4df7f5e221552df7da87f14320d)
1
2int d =
30
4;
5int e =
61
7;
8int f =
90
10;
11int
12main()
13{
14	int a, b, c;
15	a = 2 > 1 ? 0 : 0 ? 1 : 1;
16	b = (2 > 1 ? 0 : 0) ? 1 : 1;
17	c = 2 > 1 ? 0 : (0 ? 1 : 1);
18	printf("%d %d %d\n", a, b, c);
19	printf("%d %d %d\n", d, e, f);
20	return 0;
21}
22