shithub: scc

ref: 14fcfac5df605f4349cfe6be78ca1cb9c5d6fabe
dir: /tests/0053-struct.c/

View raw version

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