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

error: aborting due to previous error

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