DEBSOURCES
Skip Quicknav
sources / smlnj / 110.79-8 / ckit / regression / valid-programs / a66.c
12345678
void main() { char a, b, c, d, e; a?b:c?d:e; /* Line 5. */ (a?b:c)?d:e; /* Line 6. */ a?b:(c?d:e); /* Line 7. */ }