rust/src/test/ui/issues/issue-4935.stderr

13 lines
362 B
Plaintext
Raw Normal View History

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