[WARNING]
The special member (Constructor, destructor or assignment operator) could not be accessed.
struct A {
private:
A();
};
struct B {
A a;
};
void main() {
B b; // error
}
Change the access specifier for the special member.