rust-clippy/tests/ui/redundant_closure_call_fixable.stderr
2019-09-25 14:45:18 -07:00

10 lines
339 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