shithub: scc

ref: 3fb3ff2c0b27f8468e1e1ad24465742d3b89dc4e
dir: /tests/execute/0017-struct.c/

View raw version


int
main()
{
	struct { int x; int y; } s;
	
	s.x = 3;
	s.y = 5;
	return s.y - s.x - 2; 
}