summary refs log tree commit diff
path: root/src/test/ui/issues/issue-4935.stderr
blob: 03b9b91edefb2e61a582ebb2db3bf37fa03ab491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0061]: this function takes 1 argument but 2 arguments were supplied
  --> $DIR/issue-4935.rs:5:13
   |
LL | fn main() { foo(5, 6) }
   |             ^^^ -  - supplied 2 arguments
   |             |
   |             expected 1 argument
   |
note: function defined here
  --> $DIR/issue-4935.rs:3:4
   |
LL | fn foo(a: usize) {}
   |    ^^^ --------

error: aborting due to previous error

For more information about this error, try `rustc --explain E0061`.