shithub: scc

ref: 574666e636c1f4a73efd3e8a3b9db96e3206184f
dir: /tests/execute/0157-list.c/

View raw version
typedef struct List List;
struct List {
	int len;
	struct List *head;
	List *back;
};

int
main(void)
{
	List List;

	return List.len;
}