cfad47cfa3/t3compiler/tads3/test/data/str_macro.t

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#define _STR(x) #x
2
#define STR(x) _STR(x)
3
4
#define FOO() bar
5
#define NEWLINE \n
6
#define QSPACE  \  
7
#define QSPACE2 \  //
8
9
STR(FOO());
10
STR(NEWLINE);
11
STR(QSPACE);
12
STR(QSPACE2);