diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-27 10:14:38 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-27 10:14:38 -0700 |
commit | 602a34769a0850a98366c4011ce8b8c7d08c9276 (patch) | |
tree | 80f63333b39feff6d0ee8eef969e78af6dc95139 | |
parent | a8ea26d7c94526518670e54f44336f433d0ac77c (diff) |
Add test 56 for a comma within the expansion of an argument.
This case was tricky on the take-2 branch. It happens to be passing already
here.
-rw-r--r-- | tests/056-macro-argument-with-comma.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/056-macro-argument-with-comma.c b/tests/056-macro-argument-with-comma.c new file mode 100644 index 0000000000..58701d1f25 --- /dev/null +++ b/tests/056-macro-argument-with-comma.c @@ -0,0 +1,4 @@ +#define bar with,embedded,commas +#define function(x) success +#define foo function +foo(bar) |