ref: 1ec4d62ccec0872d1ecc64f6834e5ea8d36f7a1f dir: /tests/execute/0157-list.c/
typedef struct List List; struct List { int len; struct List *head; List *back; }; int main(void) { List List; return List.len; }