shithub: scc

ref: 7e89e1486517bc250f1725255345b6d745a9e7cf
dir: /tests/0045-struct.c/

View raw version
struct T;

struct T {
	int x;
};

int
main()
{
	struct T v;
	{ struct T { int z; }; }
	v.x = 2;
	if(v.x != 2)
		return 1;
	return 0;
}