Add test where a macro formal parameter is the same as an existing macro.

This is a well-defined condition, but something that currently trips up
the implementation. Should be easy to fix.
This commit is contained in:
Carl Worth 2010-05-13 12:57:34 -07:00
parent dcc2ecd30d
commit 3014073311

View file

@ -0,0 +1,3 @@
#define x 0
#define foo(x) x
foo(1)