[ERROR]
A constant argument was specified for calling a function with a reference parameter to a non-constant.
void f(const int &); // ok
void f(int &); // causes error, when calling
// with constant argument
void main() {
f(3); // error for second function declaration
}
The parameter must be a reference to a constant, or pass a non-constant variable as argument.