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:
@@ -0,0 +1,3 @@
|
||||
#define bar(x) (1+(x))
|
||||
#define foo(y) (2*(y))
|
||||
foo(bar(3))
|
||||
Reference in New Issue
Block a user