Add test for function-like macro invocations with multiple-token arguments.

These are not yet parsed correctly, so these tests fail.
This commit is contained in:
Carl Worth 2010-05-14 10:00:59 -07:00
parent 2be8be0f74
commit db272e6e6f
2 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1,2 @@
#define foo(x) (x)
foo(this is more than one word)

View file

@ -0,0 +1,2 @@
#define foo(x,y) x, two fish, red fish, y
foo(one fish, blue fish)