]> git.proxmox.com Git - rustc.git/blob - src/test/ui/closure-expected-type/expect-infer-var-appearing-twice.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / closure-expected-type / expect-infer-var-appearing-twice.stderr
1 error[E0631]: type mismatch in closure arguments
2 --> $DIR/expect-infer-var-appearing-twice.rs:14:5
3 |
4 LL | fn with_closure<F, A>(_: F)
5 | ------------ required by a bound in this
6 LL | where F: FnOnce(A, A)
7 | ------------ required by this bound in `with_closure`
8 ...
9 LL | with_closure(|x: u32, y: i32| {
10 | ^^^^^^^^^^^^ ---------------- found signature of `fn(u32, i32) -> _`
11 | |
12 | expected signature of `fn(_, _) -> _`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0631`.