|
1 | 1 | error: used underscore-prefixed item
|
2 |
| - --> tests/ui/used_underscore_items.rs:40:5 |
| 2 | + --> tests/ui/used_underscore_items.rs:43:5 |
3 | 3 | |
|
4 | 4 | LL | _foo1();
|
5 | 5 | | ^^^^^^^
|
6 | 6 | |
|
7 | 7 | note: item is defined here
|
8 |
| - --> tests/ui/used_underscore_items.rs:19:1 |
| 8 | + --> tests/ui/used_underscore_items.rs:22:1 |
9 | 9 | |
|
10 | 10 | LL | fn _foo1() {}
|
11 | 11 | | ^^^^^^^^^^
|
12 | 12 | = note: `-D clippy::used-underscore-items` implied by `-D warnings`
|
13 | 13 | = help: to override `-D warnings` add `#[allow(clippy::used_underscore_items)]`
|
14 | 14 |
|
15 | 15 | error: used underscore-prefixed item
|
16 |
| - --> tests/ui/used_underscore_items.rs:41:13 |
| 16 | + --> tests/ui/used_underscore_items.rs:44:13 |
17 | 17 | |
|
18 | 18 | LL | let _ = _foo2();
|
19 | 19 | | ^^^^^^^
|
20 | 20 | |
|
21 | 21 | note: item is defined here
|
22 |
| - --> tests/ui/used_underscore_items.rs:21:1 |
| 22 | + --> tests/ui/used_underscore_items.rs:24:1 |
23 | 23 | |
|
24 | 24 | LL | fn _foo2() -> i32 {
|
25 | 25 | | ^^^^^^^^^^^^^^^^^
|
26 | 26 |
|
27 | 27 | error: used underscore-prefixed item
|
28 |
| - --> tests/ui/used_underscore_items.rs:42:5 |
| 28 | + --> tests/ui/used_underscore_items.rs:45:5 |
29 | 29 | |
|
30 | 30 | LL | a::b::c::_foo3();
|
31 | 31 | | ^^^^^^^^^^^^^^^^
|
32 | 32 | |
|
33 | 33 | note: item is defined here
|
34 |
| - --> tests/ui/used_underscore_items.rs:28:13 |
| 34 | + --> tests/ui/used_underscore_items.rs:31:13 |
35 | 35 | |
|
36 | 36 | LL | pub fn _foo3() {}
|
37 | 37 | | ^^^^^^^^^^^^^^
|
38 | 38 |
|
39 | 39 | error: used underscore-prefixed item
|
40 |
| - --> tests/ui/used_underscore_items.rs:43:14 |
| 40 | + --> tests/ui/used_underscore_items.rs:46:14 |
41 | 41 | |
|
42 | 42 | LL | let _ = &_FooStruct {};
|
43 | 43 | | ^^^^^^^^^^^^^
|
44 | 44 | |
|
45 | 45 | note: item is defined here
|
46 |
| - --> tests/ui/used_underscore_items.rs:13:1 |
| 46 | + --> tests/ui/used_underscore_items.rs:16:1 |
47 | 47 | |
|
48 | 48 | LL | struct _FooStruct {}
|
49 | 49 | | ^^^^^^^^^^^^^^^^^
|
50 | 50 |
|
51 | 51 | error: used underscore-prefixed item
|
52 |
| - --> tests/ui/used_underscore_items.rs:44:13 |
| 52 | + --> tests/ui/used_underscore_items.rs:47:13 |
53 | 53 | |
|
54 | 54 | LL | let _ = _FooStruct {};
|
55 | 55 | | ^^^^^^^^^^^^^
|
56 | 56 | |
|
57 | 57 | note: item is defined here
|
58 |
| - --> tests/ui/used_underscore_items.rs:13:1 |
| 58 | + --> tests/ui/used_underscore_items.rs:16:1 |
59 | 59 | |
|
60 | 60 | LL | struct _FooStruct {}
|
61 | 61 | | ^^^^^^^^^^^^^^^^^
|
62 | 62 |
|
63 | 63 | error: used underscore-prefixed item
|
64 |
| - --> tests/ui/used_underscore_items.rs:46:22 |
| 64 | + --> tests/ui/used_underscore_items.rs:49:22 |
65 | 65 | |
|
66 | 66 | LL | let foo_struct = _FooStruct {};
|
67 | 67 | | ^^^^^^^^^^^^^
|
68 | 68 | |
|
69 | 69 | note: item is defined here
|
70 |
| - --> tests/ui/used_underscore_items.rs:13:1 |
| 70 | + --> tests/ui/used_underscore_items.rs:16:1 |
71 | 71 | |
|
72 | 72 | LL | struct _FooStruct {}
|
73 | 73 | | ^^^^^^^^^^^^^^^^^
|
74 | 74 |
|
75 | 75 | error: used underscore-prefixed item
|
76 |
| - --> tests/ui/used_underscore_items.rs:47:5 |
| 76 | + --> tests/ui/used_underscore_items.rs:50:5 |
77 | 77 | |
|
78 | 78 | LL | foo_struct._method_call();
|
79 | 79 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
80 | 80 | |
|
81 | 81 | note: item is defined here
|
82 |
| - --> tests/ui/used_underscore_items.rs:16:5 |
| 82 | + --> tests/ui/used_underscore_items.rs:19:5 |
83 | 83 | |
|
84 | 84 | LL | fn _method_call(self) {}
|
85 | 85 | | ^^^^^^^^^^^^^^^^^^^^^
|
86 | 86 |
|
87 | 87 | error: used underscore-prefixed item
|
88 |
| - --> tests/ui/used_underscore_items.rs:49:23 |
| 88 | + --> tests/ui/used_underscore_items.rs:52:23 |
89 | 89 | |
|
90 | 90 | LL | let foo_struct2 = a::b::c::_FooStruct2 {};
|
91 | 91 | | ^^^^^^^^^^^^^^^^^^^^^^^
|
92 | 92 | |
|
93 | 93 | note: item is defined here
|
94 |
| - --> tests/ui/used_underscore_items.rs:30:13 |
| 94 | + --> tests/ui/used_underscore_items.rs:33:13 |
95 | 95 | |
|
96 | 96 | LL | pub struct _FooStruct2 {}
|
97 | 97 | | ^^^^^^^^^^^^^^^^^^^^^^
|
98 | 98 |
|
99 | 99 | error: used underscore-prefixed item
|
100 |
| - --> tests/ui/used_underscore_items.rs:50:5 |
| 100 | + --> tests/ui/used_underscore_items.rs:53:5 |
101 | 101 | |
|
102 | 102 | LL | foo_struct2._method_call();
|
103 | 103 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
104 | 104 | |
|
105 | 105 | note: item is defined here
|
106 |
| - --> tests/ui/used_underscore_items.rs:33:17 |
| 106 | + --> tests/ui/used_underscore_items.rs:36:17 |
107 | 107 | |
|
108 | 108 | LL | pub fn _method_call(self) {}
|
109 | 109 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
0 commit comments