mirror of https://github.com/rust-lang/rust
21 lines
475 B
Plaintext
21 lines
475 B
Plaintext
error[E0057]: this function takes 0 arguments but 1 argument was supplied
|
|
--> $DIR/issue-16939.rs:5:9
|
|
|
|
|
LL | |t| f(t);
|
|
| ^ - unexpected argument
|
|
|
|
|
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(t);
|
|
LL + |t| f();
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0057`.
|