e902302f7aa71c172329acfa715f658c34b1b071
[m6w6/ext-psi] / tests / parser / cpp003 / prescan.psi
1 #define AFTERX(x) X_ ## x
2 #define XAFTERX(x) AFTERX(x)
3 #define TABLESIZE 1024
4 #define BUFSIZE TABLESIZE
5
6 #define X_BUFSIZE 111110 + 1
7 const int \CPP_TEST1 = AFTERX(BUFSIZE); // expands to X_BUFSIZE
8
9 #define X_1024 222221 + 1
10 const int \CPP_TEST2 = XAFTERX(BUFSIZE); // expands to X_1024
11