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