rust/tests/ui/redundant_closure_call.stderr

35 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-08-01 17:54:21 +02:00
error: Closure called just once immediately after it was declared
2018-10-06 18:18:06 +02:00
--> $DIR/redundant_closure_call.rs:25:2
2017-08-01 17:54:21 +02:00
|
2018-10-06 18:18:06 +02:00
25 | 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
2018-10-06 18:18:06 +02:00
--> $DIR/redundant_closure_call.rs:28:2
2017-08-01 17:54:21 +02:00
|
2018-10-06 18:18:06 +02:00
28 | 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.
2018-10-06 18:18:06 +02:00
--> $DIR/redundant_closure_call.rs:17:10
|
17 | let a = (|| 42)();
| ^^^^^^^^^ help: Try doing something like: : `42`
2017-08-01 17:54:21 +02:00
error: Try not to call a closure in the expression where it is declared.
2018-10-06 18:18:06 +02:00
--> $DIR/redundant_closure_call.rs:20:14
2017-08-01 17:54:21 +02:00
|
2018-10-06 18:18:06 +02:00
20 | let mut k = (|m| m+1)(i);
| ^^^^^^^^^^^^
2017-08-01 17:54:21 +02:00
error: Try not to call a closure in the expression where it is declared.
2018-10-06 18:18:06 +02:00
--> $DIR/redundant_closure_call.rs:22:6
2017-08-01 17:54:21 +02:00
|
2018-10-06 18:18:06 +02:00
22 | k = (|a,b| a*b)(1,5);
| ^^^^^^^^^^^^^^^^
2017-08-01 17:54:21 +02:00
2018-01-16 17:06:27 +01:00
error: aborting due to 5 previous errors