mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
449 B
Plaintext
15 lines
449 B
Plaintext
error[E0282]: type annotations needed for `Expr<'_, VAR>`
|
|
--> $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 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|