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