Add test for an object-like macro with a definition beginning with '('
authorCarl Worth <cworth@cworth.org>
Thu, 13 May 2010 17:26:58 +0000 (10:26 -0700)
committerCarl Worth <cworth@cworth.org>
Fri, 14 May 2010 16:20:13 +0000 (09:20 -0700)
commit67c27afc168f85ce6dc66820db864aaaef67f8ed
tree135277b6c2df578b4775e76c351cb64ccf9af945
parentdb35d557a40b9fb56483f77da2fb98f541808dd0
Add test for an object-like macro with a definition beginning with '('

Our current parser sees "#define foo (" as an identifier token
followed by a '(' token and parses this as a function-like macro.

That would be correct for "#define foo(" but the preprocessor
specification treats this whitespace as significant here so this test
currently fails.
tests/015-define-object-with-parens.c [new file with mode: 0644]