shithub: scc

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