shithub: scc

ref: 0001a817076cbc01e7114c01a71fc1f70d6a4df5
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;
}