rust/tests/ui/redundant_closure_call.stderr

29 lines
826 B
Text
Raw Normal View History

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