]> git.lizzy.rs Git - rust.git/blob - tests/ui/redundant_closure_call.stderr
Merge pull request #3285 from devonhollowood/pedantic-dogfood-items-after-statements
[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:25:2
3    |
4 25 |     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:28:2
11    |
12 28 |     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:17:10
17    |
18 17 |     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:20:14
23    |
24 20 |     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:22:6
29    |
30 22 |     k = (|a,b| a*b)(1,5);
31    |         ^^^^^^^^^^^^^^^^
32
33 error: aborting due to 5 previous errors
34