11 lines
107 B
C++
11 lines
107 B
C++
|
/*
|
||
|
* THIS TESTS:
|
||
|
* - putting stringify at the end of the body
|
||
|
*/
|
||
|
|
||
|
#define Q(a) a + #
|
||
|
|
||
|
Q(z)
|
||
|
|
||
|
|