2020-07-26 14:07:07 -05:00
|
|
|
error: try not to call a closure in the expression where it is declared.
|
2019-09-25 11:30:27 -05:00
|
|
|
--> $DIR/redundant_closure_call_fixable.rs:7:13
|
|
|
|
|
|
|
|
|
LL | let a = (|| 42)();
|
2020-07-26 14:07:07 -05:00
|
|
|
| ^^^^^^^^^ help: try doing something like: `42`
|
2019-09-25 11:30:27 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::redundant-closure-call` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|