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

13 lines
391 B
Plaintext
Raw Normal View History

error[E0061]: this function takes 1 parameter but 2 parameters were supplied
--> $DIR/issue-4935.rs:15:13
|
2018-02-22 18:42:32 -06:00
LL | fn foo(a: usize) {}
| ---------------- defined here
2018-02-24 17:01:39 -06:00
LL | //~^ defined here
2018-02-22 18:42:32 -06:00
LL | fn main() { foo(5, 6) }
| ^^^^^^^^^ expected 1 parameter
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0061"