2022-05-02 14:11:03 -05:00
|
|
|
error[E0061]: this function takes 3 arguments but 2 arguments were supplied
|
|
|
|
--> $DIR/issue-96638.rs:8:5
|
|
|
|
|
|
|
|
|
LL | f(&x, "");
|
2022-08-13 00:22:47 -05:00
|
|
|
| ^ -- -- expected `usize`, found `&str`
|
|
|
|
| |
|
|
|
|
| an argument of type `usize` is missing
|
2022-05-02 14:11:03 -05:00
|
|
|
|
|
|
|
|
note: function defined here
|
|
|
|
--> $DIR/issue-96638.rs:1:4
|
|
|
|
|
|
|
|
|
LL | fn f(_: usize, _: &usize, _: usize) {}
|
|
|
|
| ^ -------- --------- --------
|
|
|
|
help: provide the argument
|
|
|
|
|
|
2022-06-19 17:10:42 -05:00
|
|
|
LL | f(/* usize */, &x, /* usize */);
|
2022-09-01 21:17:44 -05:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-05-02 14:11:03 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-05-02 14:11:03 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0061`.
|