shithub: scc

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