[ERROR]
A function call was specified with the wrong number of formal parameters.
struct A {
void f();
};
void main() {
A a;
a.f(3); // error
}
Specify the correct number of arguments.