diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-27 13:44:13 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-27 13:44:13 -0700 |
commit | fb48fcdf9b5a5b002469ed247809fb0294d6c7a8 (patch) | |
tree | 651c945692d7d956eb90f8a5e298a08f99391afa | |
parent | 602a34769a0850a98366c4011ce8b8c7d08c9276 (diff) |
Add test for macro invocations with empty arguments.
This case was recently solved on the take-2 branch.
-rw-r--r-- | tests/057-empty-arguments.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/057-empty-arguments.c b/tests/057-empty-arguments.c new file mode 100644 index 0000000000..6140232865 --- /dev/null +++ b/tests/057-empty-arguments.c @@ -0,0 +1,6 @@ +#define zero() success +zero() +#define one(x) success +one() +#define two(x,y) success +two(,) |