shithub: scc

ref: 6b5fcb86c0175ecb678edf3b77194b7ffff2bc49
dir: /tests/cc/execute/0024-typedefstruct.c/

View raw version
typedef struct { int x; int y; } s;

s v;

int
main()
{
	v.x = 1;
	v.y = 2;
	return 3 - v.x - v.y;
}