Files
mesa/tests/010-undef-re-define.c
T
Carl Worth a68e668b17 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.
2010-05-12 13:14:08 -07:00

7 lines
51 B
C

#define foo 1
foo
#undef foo
foo
#define foo 2
foo