mesa/tests/018-define-func-macro-as-parameter.c
Carl Worth 3014073311 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.
2010-05-14 09:53:50 -07:00

3 lines
36 B
C

#define x 0
#define foo(x) x
foo(1)