view tests/t16.c @ 137:0816803b22d1

Improve usage reporting. Since imake is a principal application for tradcpp and imake carefully hides what it's doing when you run it, when rejecting an invalid option be sure to report *what* that option is.
author David A. Holland
date Tue, 09 Jul 2013 13:43:27 -0400
parents 0cd5a1d55ed6
children
line wrap: on
line source

#define a() x
a()
a ()
#define b(p) p
x/**/b(1)/**/x
x/**/b (1)/**/x
x/**/b()/**/x
#define c(p,q) p/**/q
x/**/c(1,2)/**/x
x/**/c(1)/**/x
x/**/c()/**/x