summary refs log tree commit diff
path: root/src/test/ui/arg-count-mismatch.stderr
blob: d0577e4864a78bb238eca750617de5665d2901dc (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 0 arguments were supplied
  --> $DIR/arg-count-mismatch.rs:5:28
   |
LL | fn main() { let i: (); i = f(); }
   |                            ^-- supplied 0 arguments
   |                            |
   |                            expected 1 argument
   |
note: function defined here
  --> $DIR/arg-count-mismatch.rs:3:4
   |
LL | fn f(x: isize) { }
   |    ^ --------

error: aborting due to previous error

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