2017-12-10 19:47:55 +00:00
|
|
|
error[E0061]: this function takes 1 parameter but 2 parameters were supplied
|
2017-12-12 20:46:33 +00:00
|
|
|
--> $DIR/issue-4935.rs:15:13
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn foo(a: usize) {}
|
2017-12-12 20:46:33 +00:00
|
|
|
| ---------------- defined here
|
2018-02-24 23:01:39 +00:00
|
|
|
LL | //~^ defined here
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn main() { foo(5, 6) }
|
2017-12-12 20:46:33 +00:00
|
|
|
| ^^^^^^^^^ expected 1 parameter
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0061`.
|