mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
10 lines
337 B
Text
10 lines
337 B
Text
error: try not to call a closure in the expression where it is declared.
|
|
--> $DIR/redundant_closure_call_fixable.rs:7:13
|
|
|
|
|
LL | let a = (|| 42)();
|
|
| ^^^^^^^^^ help: try doing something like: `42`
|
|
|
|
|
= note: `-D clippy::redundant-closure-call` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|