[ERROR]
The number of arguments for the constructor call at a class object initialization was wrong.
struct A {
A();
};
void main() {
A a(3); // error
}
Specify the correct number of arguments for calling the constructor. Try to disable the option -Cn=Ctr, so the compiler generates a copy constructor, which may be required in your code.