shithub: scc

ref: 62155438ef96682214a7ef7160c2b493b22ea5f6
dir: /tests/0053-struct.c/

View raw version

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