shithub: scc

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