|
1 | 1 | error: statement with no effect
|
2 |
| - --> $DIR/no_effect.rs:89:5 |
| 2 | + --> $DIR/no_effect.rs:74:5 |
3 | 3 | |
|
4 | 4 | LL | 0;
|
5 | 5 | | ^^
|
6 | 6 | |
|
7 | 7 | = note: `-D clippy::no-effect` implied by `-D warnings`
|
8 | 8 |
|
9 | 9 | error: statement with no effect
|
10 |
| - --> $DIR/no_effect.rs:90:5 |
| 10 | + --> $DIR/no_effect.rs:75:5 |
11 | 11 | |
|
12 | 12 | LL | s2;
|
13 | 13 | | ^^^
|
14 | 14 |
|
15 | 15 | error: statement with no effect
|
16 |
| - --> $DIR/no_effect.rs:91:5 |
| 16 | + --> $DIR/no_effect.rs:76:5 |
17 | 17 | |
|
18 | 18 | LL | Unit;
|
19 | 19 | | ^^^^^
|
20 | 20 |
|
21 | 21 | error: statement with no effect
|
22 |
| - --> $DIR/no_effect.rs:92:5 |
| 22 | + --> $DIR/no_effect.rs:77:5 |
23 | 23 | |
|
24 | 24 | LL | Tuple(0);
|
25 | 25 | | ^^^^^^^^^
|
26 | 26 |
|
27 | 27 | error: statement with no effect
|
28 |
| - --> $DIR/no_effect.rs:93:5 |
| 28 | + --> $DIR/no_effect.rs:78:5 |
29 | 29 | |
|
30 | 30 | LL | Struct { field: 0 };
|
31 | 31 | | ^^^^^^^^^^^^^^^^^^^^
|
32 | 32 |
|
33 | 33 | error: statement with no effect
|
34 |
| - --> $DIR/no_effect.rs:94:5 |
| 34 | + --> $DIR/no_effect.rs:79:5 |
35 | 35 | |
|
36 | 36 | LL | Struct { ..s };
|
37 | 37 | | ^^^^^^^^^^^^^^^
|
38 | 38 |
|
39 | 39 | error: statement with no effect
|
40 |
| - --> $DIR/no_effect.rs:95:5 |
| 40 | + --> $DIR/no_effect.rs:80:5 |
41 | 41 | |
|
42 | 42 | LL | Union { a: 0 };
|
43 | 43 | | ^^^^^^^^^^^^^^^
|
44 | 44 |
|
45 | 45 | error: statement with no effect
|
46 |
| - --> $DIR/no_effect.rs:96:5 |
| 46 | + --> $DIR/no_effect.rs:81:5 |
47 | 47 | |
|
48 | 48 | LL | Enum::Tuple(0);
|
49 | 49 | | ^^^^^^^^^^^^^^^
|
50 | 50 |
|
51 | 51 | error: statement with no effect
|
52 |
| - --> $DIR/no_effect.rs:97:5 |
| 52 | + --> $DIR/no_effect.rs:82:5 |
53 | 53 | |
|
54 | 54 | LL | Enum::Struct { field: 0 };
|
55 | 55 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
56 | 56 |
|
57 | 57 | error: statement with no effect
|
58 |
| - --> $DIR/no_effect.rs:98:5 |
| 58 | + --> $DIR/no_effect.rs:83:5 |
59 | 59 | |
|
60 | 60 | LL | 5 + 6;
|
61 | 61 | | ^^^^^^
|
62 | 62 |
|
63 | 63 | error: statement with no effect
|
64 |
| - --> $DIR/no_effect.rs:99:5 |
| 64 | + --> $DIR/no_effect.rs:84:5 |
65 | 65 | |
|
66 | 66 | LL | *&42;
|
67 | 67 | | ^^^^^
|
68 | 68 |
|
69 | 69 | error: statement with no effect
|
70 |
| - --> $DIR/no_effect.rs:100:5 |
| 70 | + --> $DIR/no_effect.rs:85:5 |
71 | 71 | |
|
72 | 72 | LL | &6;
|
73 | 73 | | ^^^
|
74 | 74 |
|
75 | 75 | error: statement with no effect
|
76 |
| - --> $DIR/no_effect.rs:101:5 |
| 76 | + --> $DIR/no_effect.rs:86:5 |
77 | 77 | |
|
78 | 78 | LL | (5, 6, 7);
|
79 | 79 | | ^^^^^^^^^^
|
80 | 80 |
|
81 | 81 | error: statement with no effect
|
82 |
| - --> $DIR/no_effect.rs:102:5 |
| 82 | + --> $DIR/no_effect.rs:87:5 |
83 | 83 | |
|
84 | 84 | LL | box 42;
|
85 | 85 | | ^^^^^^^
|
86 | 86 |
|
87 | 87 | error: statement with no effect
|
88 |
| - --> $DIR/no_effect.rs:103:5 |
| 88 | + --> $DIR/no_effect.rs:88:5 |
89 | 89 | |
|
90 | 90 | LL | ..;
|
91 | 91 | | ^^^
|
92 | 92 |
|
93 | 93 | error: statement with no effect
|
94 |
| - --> $DIR/no_effect.rs:104:5 |
| 94 | + --> $DIR/no_effect.rs:89:5 |
95 | 95 | |
|
96 | 96 | LL | 5..;
|
97 | 97 | | ^^^^
|
98 | 98 |
|
99 | 99 | error: statement with no effect
|
100 |
| - --> $DIR/no_effect.rs:105:5 |
| 100 | + --> $DIR/no_effect.rs:90:5 |
101 | 101 | |
|
102 | 102 | LL | ..5;
|
103 | 103 | | ^^^^
|
104 | 104 |
|
105 | 105 | error: statement with no effect
|
106 |
| - --> $DIR/no_effect.rs:106:5 |
| 106 | + --> $DIR/no_effect.rs:91:5 |
107 | 107 | |
|
108 | 108 | LL | 5..6;
|
109 | 109 | | ^^^^^
|
110 | 110 |
|
111 | 111 | error: statement with no effect
|
112 |
| - --> $DIR/no_effect.rs:108:5 |
| 112 | + --> $DIR/no_effect.rs:93:5 |
113 | 113 | |
|
114 | 114 | LL | [42, 55];
|
115 | 115 | | ^^^^^^^^^
|
116 | 116 |
|
117 | 117 | error: statement with no effect
|
118 |
| - --> $DIR/no_effect.rs:109:5 |
| 118 | + --> $DIR/no_effect.rs:94:5 |
119 | 119 | |
|
120 | 120 | LL | [42, 55][1];
|
121 | 121 | | ^^^^^^^^^^^^
|
122 | 122 |
|
123 | 123 | error: statement with no effect
|
124 |
| - --> $DIR/no_effect.rs:110:5 |
| 124 | + --> $DIR/no_effect.rs:95:5 |
125 | 125 | |
|
126 | 126 | LL | (42, 55).1;
|
127 | 127 | | ^^^^^^^^^^^
|
128 | 128 |
|
129 | 129 | error: statement with no effect
|
130 |
| - --> $DIR/no_effect.rs:111:5 |
| 130 | + --> $DIR/no_effect.rs:96:5 |
131 | 131 | |
|
132 | 132 | LL | [42; 55];
|
133 | 133 | | ^^^^^^^^^
|
134 | 134 |
|
135 | 135 | error: statement with no effect
|
136 |
| - --> $DIR/no_effect.rs:112:5 |
| 136 | + --> $DIR/no_effect.rs:97:5 |
137 | 137 | |
|
138 | 138 | LL | [42; 55][13];
|
139 | 139 | | ^^^^^^^^^^^^^
|
140 | 140 |
|
141 | 141 | error: statement with no effect
|
142 |
| - --> $DIR/no_effect.rs:114:5 |
| 142 | + --> $DIR/no_effect.rs:99:5 |
143 | 143 | |
|
144 | 144 | LL | || x += 5;
|
145 | 145 | | ^^^^^^^^^^
|
146 | 146 |
|
147 | 147 | error: statement with no effect
|
148 |
| - --> $DIR/no_effect.rs:116:5 |
| 148 | + --> $DIR/no_effect.rs:101:5 |
149 | 149 | |
|
150 | 150 | LL | FooString { s: s };
|
151 | 151 | | ^^^^^^^^^^^^^^^^^^^
|
152 | 152 |
|
153 |
| -error: statement with no effect |
154 |
| - --> $DIR/no_effect.rs:117:5 |
155 |
| - | |
156 |
| -LL | A_CONST.0 = 2; |
157 |
| - | ^^^^^^^^^^^^^^ |
158 |
| - |
159 |
| -error: statement with no effect |
160 |
| - --> $DIR/no_effect.rs:118:5 |
161 |
| - | |
162 |
| -LL | B.field = 2; |
163 |
| - | ^^^^^^^^^^^^ |
164 |
| - |
165 |
| -error: statement with no effect |
166 |
| - --> $DIR/no_effect.rs:119:5 |
167 |
| - | |
168 |
| -LL | C.b.field = 2; |
169 |
| - | ^^^^^^^^^^^^^^ |
170 |
| - |
171 |
| -error: statement with no effect |
172 |
| - --> $DIR/no_effect.rs:120:5 |
173 |
| - | |
174 |
| -LL | D.arr[0] = 2; |
175 |
| - | ^^^^^^^^^^^^^ |
176 |
| - |
177 |
| -error: aborting due to 29 previous errors |
| 153 | +error: aborting due to 25 previous errors |
178 | 154 |
|
0 commit comments