]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-23046.stderr
Auto merge of #78066 - bugadani:wat, r=jonas-schievink
[rust.git] / src / test / ui / issues / issue-23046.stderr
1 error[E0282]: type annotations needed for the closure `fn(Expr<'_, _>) -> Expr<'_, _>`
2   --> $DIR/issue-23046.rs:18:9
3    |
4 LL |         let_(add(x,x), |y| {
5    |         ^^^^ cannot infer type for type parameter `VAR` declared on the function `let_`
6    |
7 help: give this closure an explicit return type without `_` placeholders
8    |
9 LL |             let_(add(x, x), |x|-> Expr<'_, _> { x })})};
10    |                                ^^^^^^^^^^^^^^^^   ^
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0282`.