Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 172 Bytes

concat-operator-stacked-override

File metadata and controls

7 lines (6 loc) · 172 Bytes
 
1
2
3
4
5
6
// This should produce "RIGHT" and not "WRONG"
#define WR RI
#define ONG GHT
#define REPLACE(WR, ONG) WR##ONG
#define REPLACE2(WR, ONG) REPLACE(WR, ONG)
REPLACE2(WR, ONG)