mesa/tests/021-define-func-compose.c
Carl Worth 92e7bf0f50 Add test for composed invocation of function-like macros.
This is a case like "foo(bar(x))" where both foo and bar are defined
function-like macros. This is not yet parsed correctly so this test
fails.
2010-05-14 11:50:33 -07:00

3 lines
58 B
C

#define bar(x) (1+(x))
#define foo(y) (2*(y))
foo(bar(3))