[ERROR]
The given class or structure was declared as a member of itself. Recursive definition of classes and structures are not allowed.
struct A {
A a;
};
Use a pointer to the class being defined instead of the class itself.