shithub: scc

ref: 3c6c5a02710e4d7a3da6121e9bfb8d2bc0d786dd
dir: /tests/cc/execute/0069-funclikemacro.c/

View raw version
#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);
}