Add test for composed invocation of function-like macros.

This is a case like "foo(bar(x))" where both foo and bar are defined
function-like macros. This is not yet parsed correctly so this test
fails.
This commit is contained in:
Carl Worth 2010-05-14 10:01:44 -07:00
parent ac070e8bf5
commit 92e7bf0f50

View file

@ -0,0 +1,3 @@
#define bar(x) (1+(x))
#define foo(y) (2*(y))
foo(bar(3))