summaryrefslogtreecommitdiffstats
path: root/tests/ui/fn/issue-3044.stderr
blob: 2690ad7117621a21240672c2ee21f1c32762897f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0061]: this method takes 2 arguments but 1 argument was supplied
  --> $DIR/issue-3044.rs:3:23
   |
LL |       needlesArr.iter().fold(|x, y| {
   |  _______________________^^^^-
LL | |
LL | |     });
   | |______- an argument is missing
   |
note: associated function defined here
  --> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
help: provide the argument
   |
LL ~     needlesArr.iter().fold(|x, y| {
LL +
LL ~     }, /* f */);
   |

error: aborting due to previous error

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