]> git.lizzy.rs Git - rust.git/blob - tests/ui/redundant_closure_call.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / redundant_closure_call.stderr
1 error: Closure called just once immediately after it was declared
2   --> $DIR/redundant_closure_call.rs:12:5
3    |
4 LL |     i = closure();
5    |     ^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::redundant-closure-call` implied by `-D warnings`
8
9 error: Closure called just once immediately after it was declared
10   --> $DIR/redundant_closure_call.rs:15:5
11    |
12 LL |     i = closure(3);
13    |     ^^^^^^^^^^^^^^
14
15 error: Try not to call a closure in the expression where it is declared.
16   --> $DIR/redundant_closure_call.rs:4:13
17    |
18 LL |     let a = (|| 42)();
19    |             ^^^^^^^^^ help: Try doing something like: : `42`
20
21 error: Try not to call a closure in the expression where it is declared.
22   --> $DIR/redundant_closure_call.rs:7:17
23    |
24 LL |     let mut k = (|m| m + 1)(i);
25    |                 ^^^^^^^^^^^^^^
26
27 error: Try not to call a closure in the expression where it is declared.
28   --> $DIR/redundant_closure_call.rs:9:9
29    |
30 LL |     k = (|a, b| a * b)(1, 5);
31    |         ^^^^^^^^^^^^^^^^^^^^
32
33 error: aborting due to 5 previous errors
34