[ERROR]
The member-initializer contains too many arguments.
struct A {
const int i;
A();
};
A::A() : i(3,5) { // error
}
Supply the correct number of arguments in the initializer list of a constructor.