shithub: scc

ref: 802fc685de68e0b4ef93de81a8270f9b3642085b
dir: /tests/execute/0082-bug.c/

View raw version
#define x(y) ((y) + 1)

int
main()
{
	int x;
	int y;
	
	y = 0;
	x = x(y);
	
	if(x != 1)
		return 1;
	
	return 0;
}