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