blob: f70ac0c9f388a9ce695b2371c0c7794870cb7a93 [file] [log] [blame] [edit]
error[E0282]: type annotations needed for `Expr<'_, _>`
--> $DIR/issue-23046.rs:17:15
|
LL | let ex = |x| {
| ^
|
help: consider giving this closure parameter an explicit type, where the type for type parameter `VAR` is specified
|
LL | let ex = |x: Expr<'_, VAR>| {
| +++++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0282`.