shithub: scc

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