shithub: scc

ref: 433b9cd26eb5d27977eb8cde6bb1c019606e0ffa
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;
}