shithub: scc

ref: 34e18c0eb51afa1b33b0db768be7ddef2a02ca63
dir: /tests/cc/execute/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;
}