I'm currently programming in C, and had
typedef struct Stack Stack;
struct Stack {
Stack above;
Tree *t;
char *tag;
};
I'm getting the error "field 'above' has incomplete type" I've already declared the struct in the typedef above it, so I'm not sure why I'm having issues. I've looked around, but haven't found anything that I can relate to this. Thanks!