shithub: scc

ref: 3d3ef19b6beb4639c7471dde143b06500bf8568f
dir: /tests/execute/0173-macro.c/

View raw version
#define x f
#define y() f

typedef struct { int f; } S;

int
main()
{
	S s;

	s.x = 0;
	return s.y();
}