We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f798804 commit 9bb2e3cCopy full SHA for 9bb2e3c
src/librustc_error_codes/error_codes/E0061.md
@@ -1,3 +1,13 @@
1
+An invalid number of arguments was passed when calling a function.
2
+
3
+Erroneous code example:
4
5
+```compile_fail,E0061
6
+fn f(u: i32) {}
7
8
+f(); // error!
9
+```
10
11
The number of arguments passed to a function must match the number of arguments
12
specified in the function signature.
13
0 commit comments