shithub: scc

ref: 24dd64f7886173ed5df312260f9f9eabfe8b0981
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;
}