Mercurial > ~dholland > hg > tradcpp > index.cgi
view tests/t08.good @ 114:05d67dd74e1f
Reduce the maximum include depth from 128 to 120.
This way with the default limits on netbsd we hit it before we run out
of file handles.
author | David A. Holland |
---|---|
date | Tue, 11 Jun 2013 13:55:38 -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; }