shithub: scc

ref: e951f65cd7c66260d1b3c0c4b7ea89cd01dd9b5e
dir: /tests/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;
}