blob: 789e88e7d06943bd961c8b68869e7b35ac330c57 [file] [log] [blame]
struct X {
int b;
};
typedef struct list_node *list;
struct list_node {
list next;
struct X *value;
};
list g(void)
{
return 0;
}