glcpp: Add test for recursive #define.

This commit is contained in:
Vinson Lee
2011-01-04 16:39:19 -08:00
parent 3488b14a04
commit 5a3f31575b

View File

@@ -0,0 +1,3 @@
#define A(a, b) B(a, b)
#define C A(0, C)
C