2020-08-23 20:11:53 -05:00
|
|
|
error: try not to call a closure in the expression where it is declared
|
2020-07-18 17:33:54 -05:00
|
|
|
--> $DIR/redundant_closure_call_early.rs:9:17
|
2017-08-01 10:54:21 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let mut k = (|m| m + 1)(i);
|
2018-12-09 23:27:19 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
2020-07-18 17:33:54 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::redundant-closure-call` implied by `-D warnings`
|
2017-08-01 10:54:21 -05:00
|
|
|
|
2020-08-23 20:11:53 -05:00
|
|
|
error: try not to call a closure in the expression where it is declared
|
2020-07-18 17:33:54 -05:00
|
|
|
--> $DIR/redundant_closure_call_early.rs:12:9
|
2017-08-01 10:54:21 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | k = (|a, b| a * b)(1, 5);
|
2018-12-09 23:27:19 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-08-01 10:54:21 -05:00
|
|
|
|
2020-07-18 17:33:54 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|