summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-16939.stderr
blob: 229ff9f181773678e9cbdbb685407685075a1d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0057]: this function takes 0 arguments but 1 argument was supplied
  --> $DIR/issue-16939.rs:5:9
   |
LL |     |t| f(t);
   |         ^ -
   |           |
   |           unexpected argument
   |           help: remove the extra argument
   |
note: callable defined here
  --> $DIR/issue-16939.rs:4:12
   |
LL | fn _foo<F: Fn()> (f: F) {
   |            ^^^^

error: aborting due to 1 previous error

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