Add test invoking a macro with an argument containing (non-macro) parentheses.

The macro invocation is defined to consume all text between a set of
matched parentheses. We previously tested for inner parentheses from a
nested function-like macro invocation. Here we test for inner
parentheses occuring on their own, (not part of another macro
invocation).
This commit is contained in:
Carl Worth 2010-05-14 16:51:54 -07:00
parent 38bd27b444
commit f6ae186cfd

View file

@ -0,0 +1,2 @@
#define foo(x) (x)
foo(argument(including parens)for the win)