shithub: scc

ref: 043884e700950348176a2b4b37263694415825e1
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;
}