mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 06:20:09 +01:00
Add test case to define, undef, and then again define a macro.
Happily, this is another test case that works just fine without any additional code.
This commit is contained in:
parent
cd27e6413a
commit
a68e668b17
1 changed files with 6 additions and 0 deletions
6
tests/010-undef-re-define.c
Normal file
6
tests/010-undef-re-define.c
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#define foo 1
|
||||
foo
|
||||
#undef foo
|
||||
foo
|
||||
#define foo 2
|
||||
foo
|
||||
Loading…
Add table
Reference in a new issue