]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0281.md
New upstream version 1.42.0+dfsg0+pve1
[rustc.git] / src / librustc_error_codes / error_codes / E0281.md
CommitLineData
d9bb1a4e
FG
1#### Note: this error code is no longer emitted by the compiler.
2
3You tried to supply a type which doesn't implement some trait in a location
4which expected that trait. This error typically occurs when working with
5`Fn`-based types. Erroneous code example:
6
7```compile-fail
8fn foo<F: Fn(usize)>(x: F) { }
9
10fn main() {
11 // type mismatch: ... implements the trait `core::ops::Fn<(String,)>`,
12 // but the trait `core::ops::Fn<(usize,)>` is required
13 // [E0281]
14 foo(|y: String| { });
15}
16```
17
18The issue in this case is that `foo` is defined as accepting a `Fn` with one
19argument of type `String`, but the closure we attempted to pass to it requires
20one arguments of type `usize`.