mesa/tests/004-define-recursive.c
Carl Worth 34db0d332e Add a couple more tests for chained #define directives.
One with the chained defines in the opposite order, and one with the
potential to trigger an infinite-loop bug through mutual
recursion. Each of these tests pass already.
2010-05-11 12:35:06 -07:00

6 lines
60 B
C

#define foo bar
#define bar baz
#define baz foo
foo
bar
baz