shithub: scc

ref: d58f3f2eb9cb620b8746ff9f7b6c172a91720629
dir: /tests/cc/execute/0157-list.c/

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

List list;

int
main(void)
{
	return list.len;
}