Error code E0061
An invalid number of arguments was passed when calling a function.
Erroneous code example:
ⓘ
The number of arguments passed to a function must match the number of arguments specified in the function signature.
For example, a function like:
Must always be called with exactly two arguments, e.g., f(2, "test")
.
Note that Rust does not have a notion of optional function arguments or variadic functions (except for its C-FFI).