ref: 2643bba93ce4239a2b1f79c82c983b42e871f389 dir: /tests/0069-funclikemacro.c/
#define A 3 #define FOO(X,Y,Z) X + Y + Z #define SEMI ; int main() { if(FOO(1, 2, A) != 6) return 1 SEMI return FOO(0,0,0); }