rust/tests/ui/redundant_closure_call.stderr

33 lines
947 B
Plaintext
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:15:2
|
15 | i = closure();
| ^^^^^^^^^^^^^
2017-08-01 17:54:21 +02:00
|
= note: `-D redundant-closure-call` implied by `-D warnings`
error: Closure called just once immediately after it was declared
--> $DIR/redundant_closure_call.rs:18:2
|
18 | 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:10
|
7 | 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.
--> $DIR/redundant_closure_call.rs:10:14
|
10 | 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.
--> $DIR/redundant_closure_call.rs:12:6
|
12 | k = (|a,b| a*b)(1,5);
| ^^^^^^^^^^^^^^^^
2017-08-01 17:54:21 +02:00