2017-08-01 15:54:21 +00:00
|
|
|
error: Closure called just once immediately after it was declared
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/redundant_closure_call.rs:21:5
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | i = closure();
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::redundant-closure-call` implied by `-D warnings`
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
|
|
error: Closure called just once immediately after it was declared
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/redundant_closure_call.rs:24:5
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | i = closure(3);
|
2017-12-07 10:20:48 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
|
|
error: Try not to call a closure in the expression where it is declared.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/redundant_closure_call.rs:13:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let a = (|| 42)();
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^ help: Try doing something like: : `42`
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
|
|
error: Try not to call a closure in the expression where it is declared.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/redundant_closure_call.rs:16:17
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let mut k = (|m| m + 1)(i);
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
|
|
error: Try not to call a closure in the expression where it is declared.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/redundant_closure_call.rs:18:9
|
2017-08-01 15:54:21 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | k = (|a, b| a * b)(1, 5);
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-08-01 15:54:21 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|