|
1 | 1 | error: non-binding `let` without a type annotation |
2 | | - --> tests/ui/let_underscore_untyped.rs:51:5 |
| 2 | + --> tests/ui/let_underscore_untyped.rs:50:5 |
3 | 3 | | |
4 | 4 | LL | let _ = a(); |
5 | 5 | | ^^^^^^^^^^^^ |
6 | 6 | | |
7 | 7 | help: consider adding a type annotation |
8 | | - --> tests/ui/let_underscore_untyped.rs:51:10 |
| 8 | + --> tests/ui/let_underscore_untyped.rs:50:10 |
9 | 9 | | |
10 | 10 | LL | let _ = a(); |
11 | 11 | | ^ |
12 | 12 | = note: `-D clippy::let-underscore-untyped` implied by `-D warnings` |
13 | 13 | = help: to override `-D warnings` add `#[allow(clippy::let_underscore_untyped)]` |
14 | 14 |
|
15 | 15 | error: non-binding `let` without a type annotation |
16 | | - --> tests/ui/let_underscore_untyped.rs:53:5 |
| 16 | + --> tests/ui/let_underscore_untyped.rs:52:5 |
17 | 17 | | |
18 | 18 | LL | let _ = b(1); |
19 | 19 | | ^^^^^^^^^^^^^ |
20 | 20 | | |
21 | 21 | help: consider adding a type annotation |
22 | | - --> tests/ui/let_underscore_untyped.rs:53:10 |
| 22 | + --> tests/ui/let_underscore_untyped.rs:52:10 |
23 | 23 | | |
24 | 24 | LL | let _ = b(1); |
25 | 25 | | ^ |
26 | 26 |
|
27 | 27 | error: non-binding `let` without a type annotation |
28 | | - --> tests/ui/let_underscore_untyped.rs:56:5 |
| 28 | + --> tests/ui/let_underscore_untyped.rs:55:5 |
29 | 29 | | |
30 | 30 | LL | let _ = d(&1); |
31 | 31 | | ^^^^^^^^^^^^^^ |
32 | 32 | | |
33 | 33 | help: consider adding a type annotation |
34 | | - --> tests/ui/let_underscore_untyped.rs:56:10 |
| 34 | + --> tests/ui/let_underscore_untyped.rs:55:10 |
35 | 35 | | |
36 | 36 | LL | let _ = d(&1); |
37 | 37 | | ^ |
38 | 38 |
|
39 | 39 | error: non-binding `let` without a type annotation |
40 | | - --> tests/ui/let_underscore_untyped.rs:58:5 |
| 40 | + --> tests/ui/let_underscore_untyped.rs:57:5 |
41 | 41 | | |
42 | 42 | LL | let _ = e(); |
43 | 43 | | ^^^^^^^^^^^^ |
44 | 44 | | |
45 | 45 | help: consider adding a type annotation |
46 | | - --> tests/ui/let_underscore_untyped.rs:58:10 |
| 46 | + --> tests/ui/let_underscore_untyped.rs:57:10 |
47 | 47 | | |
48 | 48 | LL | let _ = e(); |
49 | 49 | | ^ |
50 | 50 |
|
51 | 51 | error: non-binding `let` without a type annotation |
52 | | - --> tests/ui/let_underscore_untyped.rs:60:5 |
| 52 | + --> tests/ui/let_underscore_untyped.rs:59:5 |
53 | 53 | | |
54 | 54 | LL | let _ = f(); |
55 | 55 | | ^^^^^^^^^^^^ |
56 | 56 | | |
57 | 57 | help: consider adding a type annotation |
58 | | - --> tests/ui/let_underscore_untyped.rs:60:10 |
| 58 | + --> tests/ui/let_underscore_untyped.rs:59:10 |
59 | 59 | | |
60 | 60 | LL | let _ = f(); |
61 | 61 | | ^ |
|
0 commit comments