mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-15 14:18:04 +02:00
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.
6 lines
60 B
C
6 lines
60 B
C
#define foo bar
|
|
#define bar baz
|
|
#define baz foo
|
|
foo
|
|
bar
|
|
baz
|