diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-17 10:34:29 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-17 10:34:29 -0700 |
commit | acf87bc03411c4d9b818a346bc9dad858b0a2407 (patch) | |
tree | 441c45371e0dfc8f7098cbdeed1d182f138fa0c5 /tests | |
parent | 420d05a15b90658680b87b4d83b092768590319a (diff) |
Fix bug (and add test) for a function-like-macro appearing as a non-macro.
That is, when a function-like macro appears in the content without
parentheses it should be accepted and passed on through, (previously
the parser was regarding this as a syntax error).
Diffstat (limited to 'tests')
-rw-r--r-- | tests/025-func-macro-as-non-macro.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/025-func-macro-as-non-macro.c b/tests/025-func-macro-as-non-macro.c new file mode 100644 index 0000000000..3dbe026d9d --- /dev/null +++ b/tests/025-func-macro-as-non-macro.c @@ -0,0 +1,2 @@ +#define foo(bar) bar +foo |