shithub: scc

ref: bac3b4bfa338ea25a630b7dd10b2cab2cc9633df
dir: /tests/execute/0053-struct.c/

View raw version

int
main()
{
	struct T { int x; };
	{
		struct T s;
		s.x = 0;
		return s.x;
	}
}