Fix bug (and add tests) for a function-like macro defined as itself.
[mesa.git] / tests / 032-define-func-self-recurse.c
1 #define foo(a) foo(2 * (a))
2 foo(3)