shithub: scc

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