Files
clice/tests/ASTVisitor/macro.cpp
2024-11-06 19:27:01 +08:00

11 lines
136 B
C++

#define Name name
#define SELF(x) x
#define SELF3(x) X
void Name() {}
int SELF(x) = 1;
void SELF3(x)() {}
int z = SELF(x) + SELF(x);