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.tags/mesa-7.9-rc1
@@ -0,0 +1,3 @@ | |||
#define bar foo | |||
#define foo 1 | |||
bar |
@@ -0,0 +1,6 @@ | |||
#define foo bar | |||
#define bar baz | |||
#define baz foo | |||
foo | |||
bar | |||
baz |