Mercurial > ~dholland > hg > tradcpp > index.cgi
view tests/t08.good @ 34:c24cbfa44f81
Don't actually include stdio.h in this for testing cpp.
(If you do, the test output becomes host-dependent.)
author | David A. Holland |
---|---|
date | Sat, 30 Mar 2013 20:38:17 -0400 |
parents | 8a955e3dda2c |
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; }